Searched defs:dst_box (Results 1 - 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Dbitmap.c170 struct pipe_box dst_box; local
186 dst_box = RectToPipeBox(destination_rect, vlsurface->sampler_view->texture);
188 PIPE_TRANSFER_WRITE, &dst_box, *source_data,
H A Dsurface.c326 struct pipe_box dst_box = { local
332 PIPE_TRANSFER_WRITE, &dst_box,
H A Doutput.c244 struct pipe_box dst_box; local
258 dst_box = RectToPipeBox(destination_rect, vlsurface->sampler_view->texture);
260 PIPE_TRANSFER_WRITE, &dst_box, *source_data,
479 struct pipe_box dst_box = { local
484 pipe->transfer_inline_write(pipe, sv->texture, 0, PIPE_TRANSFER_WRITE, &dst_box,
/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dsubpicture.c171 const struct pipe_box *dst_box, const void *src, unsigned src_stride,
177 transfer = pipe->get_transfer(pipe, dst->texture, 0, PIPE_TRANSFER_WRITE, dst_box);
184 dst_box->width, dst_box->height,
306 struct pipe_box dst_box = {x, y, 0, width, height, 1}; local
327 transfer = pipe->get_transfer(pipe, dst->texture, 0, PIPE_TRANSFER_WRITE, &dst_box);
334 dst_box.width, dst_box.height, &uc);
352 struct pipe_box dst_box = {dstx, dsty, 0, width, height, 1}; local
378 upload_sampler(pipe, subpicture_priv->sampler, &dst_box, imag
170 upload_sampler(struct pipe_context *pipe, struct pipe_sampler_view *dst, const struct pipe_box *dst_box, const void *src, unsigned src_stride, unsigned src_x, unsigned src_y) argument
413 struct pipe_box dst_box = {0, 0, 0, 0, 1, 1}; local
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_gen_mipmap.c1190 struct pipe_box src_box, dst_box; local
1196 dst_box.x = dst_box.y = dst_box.z = 0;
1202 struct pipe_box src_box, dst_box; local
1206 dst_box.width = u_minify(pt->width0, dstLevel);
1207 dst_box.height = u_minify(pt->height0, dstLevel);
1208 dst_box.depth = u_minify(pt->depth0, dstLevel);
1215 &dst_box);

Completed in 191 milliseconds