HomeSort by relevance Sort by last modified time
    Searched defs:src_box (Results 1 - 13 of 13) sorted by null

  /external/mesa3d/src/gallium/drivers/r300/
r300_transfer.c 88 struct pipe_box src_box; local
92 &src_box);
96 &r300transfer->linear_texture->b.b, 0, &src_box);
  /external/mesa3d/src/gallium/state_trackers/nine/
buffer9.c 295 struct pipe_box src_box; local
306 u_box_1d(offset, This->size, &src_box);
310 src_res, 0, &src_box);
volume9.c 421 struct pipe_box src_box; local
435 src_box = *pSrcBox;
437 src_box.x = 0;
438 src_box.y = 0;
439 src_box.z = 0;
440 src_box.width = From->desc.Width;
441 src_box.height = From->desc.Height;
442 src_box.depth = From->desc.Depth;
445 dst_box.width = src_box.width;
446 dst_box.height = src_box.height
    [all...]
surface9.c 627 struct pipe_box dst_box, src_box; local
656 copy_width, copy_height, &src_box);
667 &src_box);
689 struct pipe_box src_box; local
699 u_box_origin_2d(This->desc.Width, This->desc.Height, &src_box);
700 src_box.z = From->layer;
708 &src_box, &transfer);
  /external/mesa3d/src/mesa/state_tracker/
st_texture.c 357 struct pipe_box src_box; local
370 src_box.x = 0;
371 src_box.y = 0;
372 src_box.width = width;
373 src_box.height = height;
374 src_box.depth = 1;
387 src_box.z = i;
399 &src_box);
  /external/mesa3d/src/gallium/auxiliary/util/
u_blit.c 441 struct pipe_box src_box; local
442 src_box.x = srcX0;
443 src_box.y = srcY0;
444 src_box.z = srcZ0;
445 src_box.width = srcW;
446 src_box.height = srcH;
447 src_box.depth = 1;
452 &src_box);
u_surface.c 264 struct pipe_box src_box, dst_box; local
278 src_box = *src_box_in;
284 dst_box.width = src_box.width;
285 dst_box.height = src_box.height;
286 dst_box.depth = src_box.depth;
325 assert(src_box.x % src_bw == 0);
326 assert(src_box.y % src_bh == 0);
327 assert(src_box.width % src_bw == 0 ||
328 src_box.x + src_box.width == u_minify(src->width0, src_level))
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_st.c 95 struct pipe_box src_box; local
103 u_box_2d(x, y, width, height, &src_box);
107 src_ptex, 0, &src_box);
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_context.c 254 struct pipe_box src_box; local
259 u_box_2d(sx, sy, width, height, &src_box);
263 0, &src_box);
xa_tracker.c 441 struct pipe_box src_box; local
499 xa_min(save_height, template->height0), &src_box);
501 0, 0, 0, 0, srf->tex, 0, &src_box);
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.c 583 struct pipe_box src_box; local
584 src_box.x = srcx;
585 src_box.y = 0;
586 src_box.z = 0;
587 src_box.width = size;
588 src_box.height = 1;
589 src_box.depth = 1;
592 &src->base, 0, &src_box);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_winsys_dri3.c 551 struct pipe_box src_box; local
574 u_box_origin_2d(back->width, back->height, &src_box);
579 0, &src_box);
  /external/mesa3d/src/gallium/drivers/ddebug/
dd_pipe.h 77 struct pipe_box src_box; member in struct:call_resource_copy_region

Completed in 226 milliseconds