/external/mesa3d/src/mesa/state_tracker/ |
D | st_scissor.c | 45 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()
|
/external/mesa3d/src/gallium/state_trackers/va/ |
D | postproc.c | 62 struct u_rect dst_rect; in vlVaPostProcCompositor() local 73 dst_rect.x0 = dst_region->x; in vlVaPostProcCompositor() 74 dst_rect.y0 = dst_region->y; in vlVaPostProcCompositor() 75 dst_rect.x1 = dst_region->x + dst_region->width; in vlVaPostProcCompositor() 76 dst_rect.y1 = dst_region->y + dst_region->height; in vlVaPostProcCompositor() 81 vl_compositor_set_layer_dst_area(&drv->cstate, 0, &dst_rect); in vlVaPostProcCompositor() 120 struct u_rect dst_rect; in vlVaPostProcBlit() local 163 dst_rect.x0 = dst_region->x; in vlVaPostProcBlit() 164 dst_rect.y0 = dst_region->y; in vlVaPostProcBlit() 165 dst_rect.x1 = dst_region->x + dst_region->width; in vlVaPostProcBlit() [all …]
|
D | surface.c | 184 struct u_rect *src_rect, struct u_rect *dst_rect) in vlVaPutSubpictures() argument 211 box.width = sub->dst_rect.x1 - sub->dst_rect.x0; in vlVaPutSubpictures() 212 box.height = sub->dst_rect.y1 - sub->dst_rect.y0; in vlVaPutSubpictures() 216 d = &sub->dst_rect; in vlVaPutSubpictures() 231 d = dst_rect; in vlVaPutSubpictures() 283 struct u_rect dst_rect = {destx, destx + destw, desty, desty + desth}; in vlVaPutSurface() local 336 vl_compositor_set_layer_dst_area(&drv->cstate, 0, &dst_rect); in vlVaPutSurface() 339 status = vlVaPutSubpictures(surf, drv, surf_draw, dirty_area, &src_rect, &dst_rect); in vlVaPutSurface() 961 struct u_rect src_rect, dst_rect; in vlVaExportSurfaceHandle() local 971 src_rect.x0 = dst_rect.x0 = 0; in vlVaExportSurfaceHandle() [all …]
|
D | subpicture.c | 184 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()
|
D | picture.c | 676 struct u_rect src_rect, dst_rect; in vlVaEndPicture() local 678 dst_rect.x0 = src_rect.x0 = 0; in vlVaEndPicture() 679 dst_rect.y0 = src_rect.y0 = 0; in vlVaEndPicture() 680 dst_rect.x1 = src_rect.x1 = surf->templat.width; in vlVaEndPicture() 681 dst_rect.y1 = src_rect.y1 = surf->templat.height; in vlVaEndPicture() 684 &src_rect, &dst_rect, VL_COMPOSITOR_WEAVE); in vlVaEndPicture()
|
D | va_private.h | 242 struct u_rect dst_rect; member
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_compositor.h | 218 struct u_rect *dst_rect, 231 struct u_rect *dst_rect, 243 struct u_rect *dst_rect, 263 struct u_rect *dst_rect, 276 struct u_rect *dst_rect);
|
D | vl_compositor.c | 951 struct u_rect *src_rect, struct u_rect *dst_rect, in set_yuv_layer() argument 971 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in set_yuv_layer() 999 struct u_rect *src_rect, struct u_rect *dst_rect, bool y) in set_rgb_to_yuv_layer() argument 1024 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in set_rgb_to_yuv_layer() 1165 struct u_rect *dst_rect, in vl_compositor_set_buffer_layer() argument 1184 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in vl_compositor_set_buffer_layer() 1219 struct u_rect *dst_rect, in vl_compositor_set_palette_layer() argument 1239 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in vl_compositor_set_palette_layer() 1248 struct u_rect *dst_rect, in vl_compositor_set_rgba_layer() argument 1267 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in vl_compositor_set_rgba_layer() [all …]
|
/external/mesa3d/src/gallium/state_trackers/vdpau/ |
D | output.c | 307 struct u_rect dst_rect; in vlVdpOutputSurfacePutBitsIndexed() local 408 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfacePutBitsIndexed() 443 struct u_rect dst_rect; in vlVdpOutputSurfacePutBitsYCbCr() local 515 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfacePutBitsYCbCr() 659 struct u_rect src_rect, dst_rect; in vlVdpOutputSurfaceRenderOutputSurface() local 700 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfaceRenderOutputSurface() 729 struct u_rect src_rect, dst_rect; in vlVdpOutputSurfaceRenderBitmapSurface() local 766 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfaceRenderBitmapSurface()
|
/external/mesa3d/src/gallium/state_trackers/xvmc/ |
D | surface.c | 366 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()
|
D | xvmc_private.h | 94 struct u_rect dst_rect; member
|
D | subpicture.c | 511 struct u_rect dst_rect = {surfx, surfx + surfw, surfy, surfy + surfh}; in XvMCBlendSubpicture() local 536 subpicture_priv->dst_rect = dst_rect; in XvMCBlendSubpicture()
|
/external/mesa3d/src/gallium/state_trackers/omx_bellagio/ |
D | vid_dec.c | 605 struct u_rect src_rect, dst_rect; in vid_dec_FrameDecoded() local 618 src_rect.x0 = dst_rect.x0 = 0; in vid_dec_FrameDecoded() 619 src_rect.x1 = dst_rect.x1 = templat.width; in vid_dec_FrameDecoded() 620 src_rect.y0 = dst_rect.y0 = 0; in vid_dec_FrameDecoded() 621 src_rect.y1 = dst_rect.y1 = templat.height; in vid_dec_FrameDecoded() 625 &src_rect, &dst_rect, VL_COMPOSITOR_WEAVE); in vid_dec_FrameDecoded()
|
/external/webrtc/talk/media/devices/ |
D | carbonvideorenderer.cc | 103 CGRect dst_rect = CGRectMake(x, y, CGImageGetWidth(image_ref), in DrawFrame() local 105 CGContextDrawImage(context, dst_rect, image_ref); in DrawFrame()
|
/external/pdfium/core/fxge/win32/ |
D | fx_win32_device.cpp | 795 FX_RECT dst_rect(0, 0, width, height); in GDI_SetDIBits() local 796 dst_rect.Intersect(0, 0, pBitmap->GetWidth(), pBitmap->GetHeight()); in GDI_SetDIBits() 797 int dst_width = dst_rect.Width(); in GDI_SetDIBits() 798 int dst_height = dst_rect.Height(); in GDI_SetDIBits()
|