Home
last modified time | relevance | path

Searched refs:rect (Results 976 - 1000 of 1166) sorted by relevance

1...<<31323334353637383940>>...47

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawNegativeViewportHeightTests.cpp479 VkRect2D rect = makeRect2D(0, 0, WIDTH, HEIGHT); in iterate() local
500 m_dynRenderHelper.beginRendering(vk, *secCmdBuffer, false/*isPrimary*/, *m_colorTargetView, rect, clearColor, VK_IMAGE_LAYOUT_GENERAL); in iterate()
515 m_dynRenderHelper.beginRendering(vk, *cmdBuffer, true/*isPrimary*/, *m_colorTargetView, rect, clearColor, VK_IMAGE_LAYOUT_GENERAL); in iterate()
529 m_dynRenderHelper.beginRendering(vk, *cmdBuffer, true/*isPrimary*/, *m_colorTargetView, rect, clearColor, VK_IMAGE_LAYOUT_GENERAL); in iterate()
542 beginRenderPass(vk, *cmdBuffer, *m_renderPass, *m_framebuffer, rect); in iterate()
/third_party/skia/src/gpu/vk/
H A DGrVkCommandBuffer.cpp500 for (auto &rect : renderAreas) {
501 VkRect2D vkRect = {{rect.fLeft, rect.fTop}, {rect.width(), rect.height()}};
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DQueryTests.cpp176 void TestOcclusionQueryWithScissorTest(ScissorRect rect, in TestOcclusionQueryWithScissorTest() argument
192 pass.SetScissorRect(rect.x, rect.y, rect.width, rect.height); in TestOcclusionQueryWithScissorTest()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A Dangletypes.h67 explicit constexpr RectangleImpl(const RectangleImpl<S> rect) in RectangleImpl()
68 : x(rect.x), y(rect.y), width(rect.width), height(rect.height) in RectangleImpl()
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_clear_blit.c2256 const VkRect2D *rect, in resolve_sysmem()
2270 ops->coords(cs, &rect->offset, &rect->offset, &rect->extent); in resolve_sysmem()
2308 const VkRect2D *rect) in tu_resolve_sysmem()
2319 src, dst, layer_mask, layers, rect, in tu_resolve_sysmem()
2322 src, dst, layer_mask, layers, rect, in tu_resolve_sysmem()
2326 src, dst, layer_mask, layers, rect, in tu_resolve_sysmem()
2580 rects[i].rect.offset.x, rects[i].rect in tu_clear_sysmem_attachments()
2248 resolve_sysmem(struct tu_cmd_buffer *cmd, struct tu_cs *cs, VkFormat vk_src_format, VkFormat vk_dst_format, const struct tu_image_view *src, const struct tu_image_view *dst, uint32_t layer_mask, uint32_t layers, const VkRect2D *rect, bool src_separate_ds, bool dst_separate_ds) resolve_sysmem() argument
2302 tu_resolve_sysmem(struct tu_cmd_buffer *cmd, struct tu_cs *cs, const struct tu_image_view *src, const struct tu_image_view *dst, uint32_t layer_mask, uint32_t layers, const VkRect2D *rect) tu_resolve_sysmem() argument
[all...]
/third_party/skia/modules/skparagraph/src/
H A DParagraphImpl.cpp1470 box.rect.fTop = effectiveBaseline + fEmptyMetrics.rawAscent(); in GetLineFontMetrics()
1471 box.rect.fBottom = effectiveBaseline + fEmptyMetrics.rawDescent(); in GetLineFontMetrics()
1475 box.rect.fBottom = fHeight; in GetLineFontMetrics()
1476 box.rect.fTop = fEmptyMetrics.delta(); in GetLineFontMetrics()
1481 box.rect.fBottom = fHeight; in GetLineFontMetrics()
1482 box.rect.fTop = fEmptyMetrics.delta() + verticalShift; in GetLineFontMetrics()
1488 box.rect.fTop = baseline + fStrutMetrics.ascent(); in GetLineFontMetrics()
1489 box.rect.fBottom = baseline + fStrutMetrics.descent(); in GetLineFontMetrics()
1563 r.rect.fLeft = littleRound(r.rect in GetLineFontMetrics()
[all...]
/third_party/skia/tests/
H A DMatrixTest.cpp1020 SkRect rect = { 0, 0, 1e20f, 1e20f }; in DEF_TEST() local
1021 REPORTER_ASSERT(r, rect.isFinite()); in DEF_TEST()
1022 rect = m.mapRect(rect); in DEF_TEST()
1023 REPORTER_ASSERT(r, !rect.isFinite()); in DEF_TEST()
1029 // Stripped down test case from skbug.com/12335. Essentially, the corners of this rect would in DEF_TEST()
1031 // so they would be clipped "behind" the plane, resulting in an empty mapped rect. Coordinates in DEF_TEST()
1034 SkRect rect = SkRect::MakeLTRB(0, 0, 319, 620); in DEF_TEST() local
1038 SkRect out = m.mapRect(rect); in DEF_TEST()
/third_party/vk-gl-cts/framework/referencerenderer/
H A DrrFragmentOperations.cpp50 static inline bool isInsideRect (const IVec2& point, const WindowRectangle& rect) in isInsideRect() argument
52 return de::inBounds(point.x(), rect.left, rect.left + rect.width) && in isInsideRect()
53 de::inBounds(point.y(), rect.bottom, rect.bottom + rect.height); in isInsideRect()
/third_party/skia/modules/canvaskit/
H A Dcanvaskit_bindings.cpp111 const SkRect rect = reinterpret_cast<const SkRect*>(twelveFloats)[0]; in ptrToSkRRect() local
115 rr.setRectRadii(rect, radiiValues); in ptrToSkRRect()
920 const SkRect* rect = reinterpret_cast<const SkRect*>(fPtr); in EMSCRIPTEN_BINDINGS()
921 self.clipRect(*rect, op, doAntiAlias); in EMSCRIPTEN_BINDINGS()
1083 const SkRect* rect = reinterpret_cast<const SkRect*>(fPtr); in EMSCRIPTEN_BINDINGS()
1084 self.drawRect(*rect, paint); in EMSCRIPTEN_BINDINGS()
1089 const SkRect rect = SkRect::MakeLTRB(left, top, right, bottom); in EMSCRIPTEN_BINDINGS()
1090 self.drawRect(rect, paint); in EMSCRIPTEN_BINDINGS()
1267 const float rect[] = { in EMSCRIPTEN_BINDINGS()
1270 j.set("bounds", MakeTypedArray(4, rect)); in EMSCRIPTEN_BINDINGS()
[all...]
/third_party/libinput/src/
H A Devdev-fallback.h172 struct device_coord_rect rect; member
/third_party/skia/src/core/
H A DSkDraw_text.cpp72 const SkIRect& cr = clipper.rect(); in paintMasks()
H A DSkRecorder.h103 void onClipRect(const SkRect& rect, SkClipOp, ClipEdgeStyle) override;
/third_party/skia/src/gpu/
H A DGrDrawingManager.h89 // pixels copied are specified by srcRect. They are copied to a rect of the same size in
90 // dstProxy with top left at dstPoint. If the src rect is clipped by the src bounds then pixel
91 // values in the dst rect corresponding to the area clipped by the src rect are not overwritten.
107 SkIRect rect,
/third_party/skia/experimental/sktext/include/
H A DInterface.h141 Position(PositionType positionType, size_t lineIndex, GlyphRange glyphRange, TextRange textRange, SkRect rect);
/third_party/skia/experimental/sorttoy/
H A DCmds.h162 SkIRect rect() const { return fRect; } in rect() function in ClipCmd
/third_party/skia/modules/pathkit/
H A Dexterns.js104 PathKit.SkPath.prototype.rect = function(x, y, w, h) {};
H A Dchaining.js129 PathKit.SkPath.prototype.rect = function(x, y, w, h) {
/device/board/hihope/dayu210/camera/vdi_impl/v4l2/pipeline_core/src/node/
H A Drk_codec_node.cpp348 rga_set_rect(&src.rect, 0, 0, buffer->GetWidth(), buffer->GetHeight(), in Yuv420ToRGBA8888()
350 rga_set_rect(&dst.rect, 0, 0, buffer->GetWidth(), buffer->GetHeight(), in Yuv420ToRGBA8888()
/device/soc/rockchip/rk3399/hardware/mpp/include/
H A Drk_venc_cmd.h740 H265eRect rect; member
770 * method = H265E_METHOD_CUT_SIZE, the value of rect is in ctu size
771 * method = H264E_METHOD_COORDINATE,the value of rect is in coordinates
773 H265eRect rect; member
/device/soc/rockchip/rk3568/hardware/mpp/include/
H A Drk_venc_cmd.h740 H265eRect rect; member
770 * method = H265E_METHOD_CUT_SIZE, the value of rect is in ctu size
771 * method = H264E_METHOD_COORDINATE,the value of rect is in coordinates
773 H265eRect rect; member
/device/soc/rockchip/rk3588/hardware/mpp/include/
H A Drk_venc_cmd.h822 H265eRect rect; member
852 * method = H265E_METHOD_CUT_SIZE, the value of rect is in ctu size
853 * method = H264E_METHOD_COORDINATE,the value of rect is in coordinates
855 H265eRect rect; member
/test/testfwk/arkxtest/uitest/core/
H A Dui_action.h208 explicit GenericPinch(const Rect &rect, float_t scale) : rect_(rect), scale_(scale) {}; in GenericPinch() argument
/test/xts/acts/arkui/ace_ets_component_apilack/entry/src/main/ets/MainAbility/pages/compomettestjs/CanvasRenderingContext2D/
H A Dindex.js251 ctx.rect(10, 0, 60, 60); // Create a 100*100 rectangle at (20, 20)
257 ctx.rect(10, 0, 50, 50);
/third_party/mesa3d/src/vulkan/wsi/
H A Dwsi_common_win32.c293 vk_outarray_append_typed(VkRect2D, &out, rect) { in wsi_win32_surface_get_present_rectangles()
295 *rect = (VkRect2D) { in wsi_win32_surface_get_present_rectangles()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiGetMemoryCommitment.cpp294 const VkRect2D rect = in iterate() local
302 rect, in iterate()

Completed in 38 milliseconds

1...<<31323334353637383940>>...47