Home
last modified time | relevance | path

Searched refs:rectangle (Results 1 - 18 of 18) sorted by relevance

/third_party/ffmpeg/libavdevice/
H A Dxcbgrab.c711 xcb_rectangle_t rectangle; in rectangle_from_corners() local
712 rectangle.x = FFMIN(corner_a->x, corner_b->x); in rectangle_from_corners()
713 rectangle.y = FFMIN(corner_a->y, corner_b->y); in rectangle_from_corners()
714 rectangle.width = FFABS(corner_a->x - corner_b->x); in rectangle_from_corners()
715 rectangle.height = FFABS(corner_a->y - corner_b->y); in rectangle_from_corners()
716 return rectangle; in rectangle_from_corners()
730 xcb_rectangle_t rectangle = { 0 }; in select_region() local
769 rectangle.x = press_position.x; in select_region()
770 rectangle.y = press_position.y; in select_region()
771 xcb_poly_rectangle(conn, root_window, gc, 1, &rectangle); in select_region()
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast.h166 * Rasterization information for a screen-aligned rectangle known to
251 const struct lp_rast_rectangle *rectangle; member
303 lp_rast_arg_rectangle( const struct lp_rast_rectangle *rectangle ) in lp_rast_arg_rectangle()
306 arg.rectangle = rectangle; in lp_rast_arg_rectangle()
H A Dlp_rast_rect.c145 * for this rectangle.
151 const struct lp_rast_rectangle *rect = arg.rectangle; in lp_rast_rectangle()
169 /* Intersect the rectangle with this tile. in lp_rast_rectangle()
173 /* The interior of the rectangle (if there is one) will be in lp_rast_rectangle()
176 * At each edge of the rectangle, however, there will be a fringe in lp_rast_rectangle()
H A Dlp_rast_linear.c123 /* Run the scanline version of the shader on a rectangle within the
131 const struct lp_rast_rectangle *rect = arg.rectangle; in lp_rast_linear_rect()
H A Dlp_rast_debug.c68 "rectangle",
208 * for this rectangle.
216 const struct lp_rast_rectangle *rect = arg.rectangle; in debug_rectangle()
/third_party/skia/third_party/externals/d3d12allocator/tools/D3d12maDumpVis/
H A DD3d12maDumpVis.py125 draw.rectangle([IMG_MARGIN, y, IMG_MARGIN + iSizePixels, y + MAP_SIZE], fill=TypeToColor(tAlloc[0], tAlloc[2], tAlloc[3]), outline=COLOR_OUTLINE)
132 draw.rectangle([IMG_MARGIN, y, IMG_MARGIN + iSizePixels, y + MAP_SIZE], fill=TypeToColor('FREE', 0, 0), outline=None)
144 draw.rectangle([IMG_MARGIN + iX, y, IMG_MARGIN + iXEnd, y + MAP_SIZE], fill=TypeToColor(sType, iFlags, iLayout), outline=COLOR_OUTLINE)
145 # Hard line was been overwritten by rectangle outline: redraw it.
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri3.c570 xcb_rectangle_t rectangle; in vl_dri3_flush_frontbuffer() local
580 rectangle.x = 0; in vl_dri3_flush_frontbuffer()
581 rectangle.y = 0; in vl_dri3_flush_frontbuffer()
582 rectangle.width = (scrn->output_texture) ? scrn->clip_width : scrn->width; in vl_dri3_flush_frontbuffer()
583 rectangle.height = (scrn->output_texture) ? scrn->clip_height : scrn->height; in vl_dri3_flush_frontbuffer()
589 xcb_xfixes_set_region(scrn->conn, back->region, 1, &rectangle); in vl_dri3_flush_frontbuffer()
/third_party/python/Lib/test/
H A Dcurses_tests.py24 textpad.rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
/third_party/skia/src/gpu/
H A DGrTestUtils.cpp152 SkRect rectangle = SkRect::MakeWH(10.f, 20.f); in TestRRectSimple() local
154 gRRect[0].setRectXY(rectangle, 1.f, 1.f); in TestRRectSimple()
156 gRRect[1].setRectXY(rectangle, 2.0f, 1.0f); in TestRRectSimple()
/third_party/python/Lib/curses/
H A Dtextpad.py6 def rectangle(win, uly, ulx, lry, lrx): function
7 """Draw a rectangle with corners at the provided upper-left
196 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
/third_party/mesa3d/src/egl/drivers/dri2/
H A Dplatform_x11.c489 xcb_rectangle_t rectangle; in dri2_x11_process_buffers() local
514 rectangle.x = 0; in dri2_x11_process_buffers()
515 rectangle.y = 0; in dri2_x11_process_buffers()
516 rectangle.width = dri2_surf->base.Width; in dri2_x11_process_buffers()
517 rectangle.height = dri2_surf->base.Height; in dri2_x11_process_buffers()
519 xcb_xfixes_create_region(dri2_dpy->conn, dri2_surf->region, 1, &rectangle); in dri2_x11_process_buffers()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dframe_capture_utils.cpp419 const gl::Rectangle &rectangle) in SerializeRectangle()
422 json->addScalar("x", rectangle.x); in SerializeRectangle()
423 json->addScalar("y", rectangle.y); in SerializeRectangle()
424 json->addScalar("w", rectangle.width); in SerializeRectangle()
425 json->addScalar("h", rectangle.height); in SerializeRectangle()
417 SerializeRectangle(JsonSerializer *json, const std::string &name, const gl::Rectangle &rectangle) SerializeRectangle() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateComputeTests.cpp233 const VkRect2D rectangle = in setDiscardRectangle() local
238 vkd->cmdSetDiscardRectangleEXT(cmdBuffer, 0u, 1u, &rectangle); in setDiscardRectangle()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/dynamic_state/
H A DvktDynamicStateComputeTests.cpp231 const VkRect2D rectangle = in setDiscardRectangle() local
236 vkd->cmdSetDiscardRectangleEXT(cmdBuffer, 0u, 1u, &rectangle); in setDiscardRectangle()
/third_party/cups-filters/filter/
H A Dpdftoraster.cxx57 #include <poppler/cpp/poppler-rectangle.h>
/third_party/ffmpeg/tests/fate/
H A Dfilter-video.mak63 fate-filter-paletteuse-sierra2_4a: CMD = framecrc -auto_conversion_filters -i $(TARGET_SAMPLES)/filter/anim.mkv -i $(TARGET_SAMPLES)/filter/anim-palette.png -lavfi paletteuse=sierra2_4a:diff_mode=rectangle -pix_fmt bgra
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dtexinfo.tex6331 % @cartouche ... @end cartouche: draw rectangle w/rounded corners around
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 53 milliseconds