Home
last modified time | relevance | path

Searched refs:dst_rect (Results 1 – 14 of 14) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
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()
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_compositor.h208 struct u_rect *dst_rect,
221 struct u_rect *dst_rect,
233 struct u_rect *dst_rect,
253 struct u_rect *dst_rect,
Dvl_compositor.c999 struct u_rect *dst_rect, in vl_compositor_set_buffer_layer() argument
1018 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in vl_compositor_set_buffer_layer()
1053 struct u_rect *dst_rect, in vl_compositor_set_palette_layer() argument
1073 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in vl_compositor_set_palette_layer()
1082 struct u_rect *dst_rect, in vl_compositor_set_rgba_layer() argument
1101 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in vl_compositor_set_rgba_layer()
1124 struct u_rect *dst_rect, in vl_compositor_set_yuv_layer() argument
1143 dst_rect ? *dst_rect : default_rect(&s->layers[layer])); in vl_compositor_set_yuv_layer()
/external/mesa3d/src/gallium/state_trackers/va/
Dpostproc.c61 struct u_rect dst_rect; in vlVaPostProcCompositor() local
72 dst_rect.x0 = dst_region->x; in vlVaPostProcCompositor()
73 dst_rect.y0 = dst_region->y; in vlVaPostProcCompositor()
74 dst_rect.x1 = dst_region->x + dst_region->width; in vlVaPostProcCompositor()
75 dst_rect.y1 = dst_region->y + dst_region->height; in vlVaPostProcCompositor()
80 vl_compositor_set_layer_dst_area(&drv->cstate, 0, &dst_rect); in vlVaPostProcCompositor()
Dsurface.c185 struct u_rect *src_rect, struct u_rect *dst_rect) in vlVaPutSubpictures() argument
212 box.width = sub->dst_rect.x1 - sub->dst_rect.x0; in vlVaPutSubpictures()
213 box.height = sub->dst_rect.y1 - sub->dst_rect.y0; in vlVaPutSubpictures()
217 d = &sub->dst_rect; in vlVaPutSubpictures()
232 d = dst_rect; in vlVaPutSubpictures()
284 struct u_rect dst_rect = {destx, destx + destw, desty, desty + desth}; in vlVaPutSurface() local
325 vl_compositor_set_layer_dst_area(&drv->cstate, 0, &dst_rect); in vlVaPutSurface()
328 status = vlVaPutSubpictures(surf, drv, surf_draw, dirty_area, &src_rect, &dst_rect); in vlVaPutSurface()
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()
Dva_private.h218 struct u_rect dst_rect; member
/external/mesa3d/src/gallium/state_trackers/omx/
Dvid_dec.c588 struct u_rect dst_rect; in vid_dec_deint() local
593 dst_rect.x0 = 0; in vid_dec_deint()
594 dst_rect.x1 = src_buf->width; in vid_dec_deint()
595 dst_rect.y0 = 0; in vid_dec_deint()
596 dst_rect.y1 = src_buf->height; in vid_dec_deint()
599 vl_compositor_set_layer_dst_area(s, 0, &dst_rect); in vid_dec_deint()
602 dst_rect.x1 /= 2; in vid_dec_deint()
603 dst_rect.y1 /= 2; in vid_dec_deint()
606 vl_compositor_set_layer_dst_area(s, 0, &dst_rect); in vid_dec_deint()
/external/mesa3d/src/gallium/state_trackers/vdpau/
Doutput.c300 struct u_rect dst_rect; in vlVdpOutputSurfacePutBitsIndexed() local
401 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfacePutBitsIndexed()
436 struct u_rect dst_rect; in vlVdpOutputSurfacePutBitsYCbCr() local
508 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfacePutBitsYCbCr()
652 struct u_rect src_rect, dst_rect; in vlVdpOutputSurfaceRenderOutputSurface() local
693 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfaceRenderOutputSurface()
722 struct u_rect src_rect, dst_rect; in vlVdpOutputSurfaceRenderBitmapSurface() local
759 vl_compositor_set_layer_dst_area(cstate, 0, RectToPipe(destination_rect, &dst_rect)); in vlVdpOutputSurfaceRenderBitmapSurface()
/external/mesa3d/src/gallium/state_trackers/xvmc/
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()
Dxvmc_private.h94 struct u_rect dst_rect; member
Dsubpicture.c432 struct u_rect dst_rect = {surfx, surfx + surfw, surfy, surfy + surfh}; in XvMCBlendSubpicture() local
457 subpicture_priv->dst_rect = dst_rect; in XvMCBlendSubpicture()
/external/webrtc/talk/media/devices/
Dcarbonvideorenderer.cc103 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/
Dfx_win32_device.cpp801 FX_RECT dst_rect(0, 0, width, height); in GDI_SetDIBits() local
802 dst_rect.Intersect(0, 0, pBitmap->GetWidth(), pBitmap->GetHeight()); in GDI_SetDIBits()
803 int dst_width = dst_rect.Width(); in GDI_SetDIBits()
804 int dst_height = dst_rect.Height(); in GDI_SetDIBits()