Searched refs:dst_box (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/gallium/state_trackers/xvmc/ |
D | subpicture.c | 171 const struct pipe_box *dst_box, const void *src, unsigned src_stride, in upload_sampler() argument 177 transfer = pipe->get_transfer(pipe, dst->texture, 0, PIPE_TRANSFER_WRITE, dst_box); in upload_sampler() 184 dst_box->width, dst_box->height, in upload_sampler() 306 struct pipe_box dst_box = {x, y, 0, width, height, 1}; in XvMCClearSubpicture() local 327 transfer = pipe->get_transfer(pipe, dst->texture, 0, PIPE_TRANSFER_WRITE, &dst_box); in XvMCClearSubpicture() 334 dst_box.width, dst_box.height, &uc); in XvMCClearSubpicture() 352 struct pipe_box dst_box = {dstx, dsty, 0, width, height, 1}; in XvMCCompositeSubpicture() local 378 upload_sampler(pipe, subpicture_priv->sampler, &dst_box, image->data, src_stride, srcx, srcy); in XvMCCompositeSubpicture() 413 struct pipe_box dst_box = {0, 0, 0, 0, 1, 1}; in XvMCSetSubpicturePalette() local 425 dst_box.width = subpicture->num_palette_entries; in XvMCSetSubpicturePalette() [all …]
|
/external/mesa3d/src/gallium/state_trackers/vdpau/ |
D | bitmap.c | 170 struct pipe_box dst_box; in vlVdpBitmapSurfacePutBitsNative() local 186 dst_box = RectToPipeBox(destination_rect, vlsurface->sampler_view->texture); in vlVdpBitmapSurfacePutBitsNative() 188 PIPE_TRANSFER_WRITE, &dst_box, *source_data, in vlVdpBitmapSurfacePutBitsNative()
|
D | output.c | 244 struct pipe_box dst_box; in vlVdpOutputSurfacePutBitsNative() local 258 dst_box = RectToPipeBox(destination_rect, vlsurface->sampler_view->texture); in vlVdpOutputSurfacePutBitsNative() 260 PIPE_TRANSFER_WRITE, &dst_box, *source_data, in vlVdpOutputSurfacePutBitsNative() 479 struct pipe_box dst_box = { in vlVdpOutputSurfacePutBitsYCbCr() local 484 pipe->transfer_inline_write(pipe, sv->texture, 0, PIPE_TRANSFER_WRITE, &dst_box, in vlVdpOutputSurfacePutBitsYCbCr()
|
D | surface.c | 326 struct pipe_box dst_box = { in vlVdpVideoSurfacePutBitsYCbCr() local 332 PIPE_TRANSFER_WRITE, &dst_box, in vlVdpVideoSurfacePutBitsYCbCr()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_pipe_blit.c | 74 dst_level, dst_box->z, dst_box->z, in svga_surface_copy()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_gen_mipmap.c | 1190 struct pipe_box src_box, dst_box; in make_3d_mipmap() local 1196 dst_box.x = dst_box.y = dst_box.z = 0; in make_3d_mipmap() 1202 struct pipe_box src_box, dst_box; in make_3d_mipmap() local 1206 dst_box.width = u_minify(pt->width0, dstLevel); in make_3d_mipmap() 1207 dst_box.height = u_minify(pt->height0, dstLevel); in make_3d_mipmap() 1208 dst_box.depth = u_minify(pt->depth0, dstLevel); in make_3d_mipmap() 1215 &dst_box); in make_3d_mipmap()
|