Home
last modified time | relevance | path

Searched refs:dst_box (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/xvmc/
Dsubpicture.c171 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/
Dbitmap.c170 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()
Doutput.c244 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()
Dsurface.c326 struct pipe_box dst_box = { in vlVdpVideoSurfacePutBitsYCbCr() local
332 PIPE_TRANSFER_WRITE, &dst_box, in vlVdpVideoSurfacePutBitsYCbCr()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_pipe_blit.c74 dst_level, dst_box->z, dst_box->z, in svga_surface_copy()
/external/mesa3d/src/gallium/auxiliary/util/
Du_gen_mipmap.c1190 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()