Home
last modified time | relevance | path

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

/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_scissor.c45 struct pipe_scissor_state *dst_rect = &blit->window_rectangles[i]; in st_window_rectangles_to_blit() local
46 dst_rect->minx = MAX2(src_rect->X, 0); in st_window_rectangles_to_blit()
47 dst_rect->miny = MAX2(src_rect->Y, 0); in st_window_rectangles_to_blit()
48 dst_rect->maxx = MAX2(src_rect->X + src_rect->Width, 0); in st_window_rectangles_to_blit()
49 dst_rect->maxy = MAX2(src_rect->Y + src_rect->Height, 0); in st_window_rectangles_to_blit()
/third_party/mesa3d/src/gallium/frontends/va/
H A Dpostproc.c64 struct u_rect dst_rect; in vlVaPostProcCompositor() local
75 dst_rect.x0 = dst_region->x; in vlVaPostProcCompositor()
76 dst_rect.y0 = dst_region->y; in vlVaPostProcCompositor()
77 dst_rect.x1 = dst_region->x + dst_region->width; in vlVaPostProcCompositor()
78 dst_rect.y1 = dst_region->y + dst_region->height; in vlVaPostProcCompositor()
83 vl_compositor_set_layer_dst_area(&drv->cstate, 0, &dst_rect); in vlVaPostProcCompositor()
130 struct u_rect dst_rect; in vlVaVidEngineBlit() local
137 dst_rect.x0 = dst_region->x; in vlVaVidEngineBlit()
138 dst_rect.y0 = dst_region->y; in vlVaVidEngineBlit()
139 dst_rect in vlVaVidEngineBlit()
192 struct u_rect dst_rect; vlVaPostProcBlit() local
[all...]
H A Dsurface.c218 struct u_rect *src_rect, struct u_rect *dst_rect) in vlVaPutSubpictures()
245 box.width = sub->dst_rect.x1 - sub->dst_rect.x0; in vlVaPutSubpictures()
246 box.height = sub->dst_rect.y1 - sub->dst_rect.y0; in vlVaPutSubpictures()
250 d = &sub->dst_rect; in vlVaPutSubpictures()
265 d = dst_rect; in vlVaPutSubpictures()
317 struct u_rect dst_rect = {destx, destx + destw, desty, desty + desth}; in vlVaPutSurface() local
370 vl_compositor_set_layer_dst_area(&drv->cstate, 0, &dst_rect); in vlVaPutSurface()
373 status = vlVaPutSubpictures(surf, drv, surf_draw, dirty_area, &src_rect, &dst_rect); in vlVaPutSurface()
216 vlVaPutSubpictures(vlVaSurface *surf, vlVaDriver *drv, struct pipe_surface *surf_draw, struct u_rect *dirty_area, struct u_rect *src_rect, struct u_rect *dst_rect) vlVaPutSubpictures() argument
1300 struct u_rect src_rect, dst_rect; vlVaExportSurfaceHandle() local
[all...]
H A Dsubpicture.c184 struct u_rect dst_rect = {dest_x, dest_x + dest_width, dest_y, dest_y + dest_height}; in vlVaAssociateSubpicture() local
206 sub->dst_rect = dst_rect; in vlVaAssociateSubpicture()
H A Dpicture.c769 struct u_rect src_rect, dst_rect; in vlVaEndPicture() local
771 dst_rect.x0 = src_rect.x0 = 0; in vlVaEndPicture()
772 dst_rect.y0 = src_rect.y0 = 0; in vlVaEndPicture()
773 dst_rect.x1 = src_rect.x1 = surf->templat.width; in vlVaEndPicture()
774 dst_rect.y1 = src_rect.y1 = surf->templat.height; in vlVaEndPicture()
777 &src_rect, &dst_rect, VL_COMPOSITOR_WEAVE); in vlVaEndPicture()
H A Dimage.c342 struct u_rect src_rect, dst_rect; in vlVaDeriveImage() local
356 src_rect.x0 = dst_rect.x0 = 0; in vlVaDeriveImage()
357 src_rect.x1 = dst_rect.x1 = surf->templat.width; in vlVaDeriveImage()
358 src_rect.y0 = dst_rect.y0 = 0; in vlVaDeriveImage()
359 src_rect.y1 = dst_rect.y1 = surf->templat.height; in vlVaDeriveImage()
363 &src_rect, &dst_rect, in vlVaDeriveImage()
H A Dva_private.h261 struct u_rect dst_rect; member
/third_party/mesa3d/src/gallium/frontends/omx/
H A Dvid_dec_common.c97 struct u_rect dst_rect; in vid_dec_FillOutput() local
113 dst_rect.x0 = 0; in vid_dec_FillOutput()
114 dst_rect.y0 = 0; in vid_dec_FillOutput()
115 dst_rect.x1 = def->nFrameWidth; in vid_dec_FillOutput()
116 dst_rect.y1 = def->nFrameHeight; in vid_dec_FillOutput()
121 vl_compositor_set_layer_dst_area(s, 0, &dst_rect); in vid_dec_FillOutput()
H A Dvid_dec_h264_common.c1088 struct u_rect src_rect, dst_rect; in vid_dec_FrameDecoded_common() local
1111 src_rect.x0 = dst_rect.x0 = 0; in vid_dec_FrameDecoded_common()
1112 src_rect.x1 = dst_rect.x1 = templat.width; in vid_dec_FrameDecoded_common()
1113 src_rect.y0 = dst_rect.y0 = 0; in vid_dec_FrameDecoded_common()
1114 src_rect.y1 = dst_rect.y1 = templat.height; in vid_dec_FrameDecoded_common()
1118 &src_rect, &dst_rect, VL_COMPOSITOR_WEAVE); in vid_dec_FrameDecoded_common()
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_compositor.c321 struct u_rect *src_rect, struct u_rect *dst_rect, in set_yuv_layer()
342 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in set_yuv_layer()
379 struct u_rect *src_rect, struct u_rect *dst_rect, bool y) in set_rgb_to_yuv_layer()
404 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in set_rgb_to_yuv_layer()
550 struct u_rect *dst_rect, in vl_compositor_set_buffer_layer()
570 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in vl_compositor_set_buffer_layer()
620 struct u_rect *dst_rect, in vl_compositor_set_palette_layer()
319 set_yuv_layer(struct vl_compositor_state *s, struct vl_compositor *c, unsigned layer, struct pipe_video_buffer *buffer, struct u_rect *src_rect, struct u_rect *dst_rect, bool y, enum vl_compositor_deinterlace deinterlace) set_yuv_layer() argument
377 set_rgb_to_yuv_layer(struct vl_compositor_state *s, struct vl_compositor *c, unsigned layer, struct pipe_sampler_view *v, struct u_rect *src_rect, struct u_rect *dst_rect, bool y) set_rgb_to_yuv_layer() argument
545 vl_compositor_set_buffer_layer(struct vl_compositor_state *s, struct vl_compositor *c, unsigned layer, struct pipe_video_buffer *buffer, struct u_rect *src_rect, struct u_rect *dst_rect, enum vl_compositor_deinterlace deinterlace) vl_compositor_set_buffer_layer() argument
614 vl_compositor_set_palette_layer(struct vl_compositor_state *s, struct vl_compositor *c, unsigned layer, struct pipe_sampler_view *indexes, struct pipe_sampler_view *palette, struct u_rect *src_rect, struct u_rect *dst_rect, bool include_color_conversion) vl_compositor_set_palette_layer() argument
644 vl_compositor_set_rgba_layer(struct vl_compositor_state *s, struct vl_compositor *c, unsigned layer, struct pipe_sampler_view *rgba, struct u_rect *src_rect, struct u_rect *dst_rect, struct vertex4f *colors) vl_compositor_set_rgba_layer() argument
686 vl_compositor_yuv_deint_full(struct vl_compositor_state *s, struct vl_compositor *c, struct pipe_video_buffer *src, struct pipe_video_buffer *dst, struct u_rect *src_rect, struct u_rect *dst_rect, enum vl_compositor_deinterlace deinterlace) vl_compositor_yuv_deint_full() argument
716 vl_compositor_convert_rgb_to_yuv(struct vl_compositor_state *s, struct vl_compositor *c, unsigned layer, struct pipe_resource *src_res, struct pipe_video_buffer *dst, struct u_rect *src_rect, struct u_rect *dst_rect) vl_compositor_convert_rgb_to_yuv() argument
[all...]
H A Dvl_compositor.h243 struct u_rect *dst_rect,
256 struct u_rect *dst_rect,
268 struct u_rect *dst_rect,
288 struct u_rect *dst_rect,
301 struct u_rect *dst_rect);
/third_party/mesa3d/src/gallium/frontends/vdpau/
H A Doutput.c308 struct u_rect dst_rect; in vlVdpOutputSurfacePutBitsIndexed() local
412 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfacePutBitsIndexed()
447 struct u_rect dst_rect; in vlVdpOutputSurfacePutBitsYCbCr() local
521 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfacePutBitsYCbCr()
665 struct u_rect src_rect, dst_rect; in vlVdpOutputSurfaceRenderOutputSurface() local
706 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfaceRenderOutputSurface()
735 struct u_rect src_rect, dst_rect; in vlVdpOutputSurfaceRenderBitmapSurface() local
772 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfaceRenderBitmapSurface()
/third_party/mesa3d/src/gallium/frontends/xvmc/
H A Dsurface.c366 struct u_rect dst_rect = {destx, destx + destw, desty, desty + desth}; in XvMCPutSurface() local
430 &subpicture_priv->src_rect, &subpicture_priv->dst_rect, true); in XvMCPutSurface()
433 &subpicture_priv->src_rect, &subpicture_priv->dst_rect, NULL); in XvMCPutSurface()
442 vl_compositor_set_layer_dst_area(cstate, 0, &dst_rect); in XvMCPutSurface()
443 vl_compositor_set_layer_dst_area(cstate, 1, &dst_rect); in XvMCPutSurface()
H A Dxvmc_private.h94 struct u_rect dst_rect; member
H A Dsubpicture.c509 struct u_rect dst_rect = {surfx, surfx + surfw, surfy, surfy + surfh}; in XvMCBlendSubpicture() local
534 subpicture_priv->dst_rect = dst_rect; in XvMCBlendSubpicture()
/third_party/skia/modules/skottie/utils/
H A DSkottieUtils.cpp213 const auto dst_rect = SkRect::MakeSize(fSize); variable
214 fAnimation->render(canvas, &dst_rect);
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_vX_meta_copy.c632 float dst_rect[] = { in panvk_meta_copy_img2img() local
640 pan_pool_upload_aligned(&cmdbuf->desc_pool.base, dst_rect, in panvk_meta_copy_img2img()
641 sizeof(dst_rect), 64); in panvk_meta_copy_img2img()
1037 float dst_rect[] = { in panvk_meta_copy_buf2img() local
1044 pan_pool_upload_aligned(&cmdbuf->desc_pool.base, dst_rect, in panvk_meta_copy_buf2img()
1045 sizeof(dst_rect), 64); in panvk_meta_copy_buf2img()
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_blitter.c1532 float dst_rect[] = { in pan_blit_ctx_init() local
1540 pan_pool_upload_aligned(blit_pool, dst_rect, in pan_blit_ctx_init()
1541 sizeof(dst_rect), 64); in pan_blit_ctx_init()

Completed in 18 milliseconds