HomeSort by: relevance | last modified time | path
    Searched defs:src_box (Results 1 - 25 of 44) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
r300_transfer.c 85 struct pipe_box src_box; local
89 &src_box);
93 &r300transfer->linear_texture->b, 0, &src_box);
  /xsrc/external/mit/MesaLib.old/dist/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);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/
buffer9.c 309 struct pipe_box src_box; local
320 u_box_1d(offset, This->size, &src_box);
324 src_res, 0, &src_box);
volume9.c 430 struct pipe_box src_box; local
444 src_box = *pSrcBox;
446 src_box.x = 0;
447 src_box.y = 0;
448 src_box.z = 0;
449 src_box.width = From->desc.Width;
450 src_box.height = From->desc.Height;
451 src_box.depth = From->desc.Depth;
454 dst_box.width = src_box.width;
455 dst_box.height = src_box.height
    [all...]
surface9.c 551 struct pipe_box dst_box, src_box; local
577 This->desc.Width, This->desc.Height, &src_box);
589 &src_box);
638 struct pipe_box dst_box, src_box; local
667 copy_width, copy_height, &src_box);
678 &src_box);
713 struct pipe_box src_box; local
723 u_box_origin_2d(This->desc.Width, This->desc.Height, &src_box);
724 src_box.z = From->layer;
732 &src_box, &transfer)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/d3d10umd/
Dxgi.cpp 315 struct pipe_box src_box; local
316 src_box.x = 0;
317 src_box.y = 0;
318 src_box.z = 0;
319 src_box.width = resource0->width0;
320 src_box.height = resource0->height0;
321 src_box.depth = resource0->depth0;
348 &src_box);
Resource.cpp 706 struct pipe_box src_box; local
708 src_box.x = pSrcBox->left;
709 src_box.y = pSrcBox->top;
710 src_box.z = pSrcBox->front + src_layer;
711 src_box.width = pSrcBox->right - pSrcBox->left;
712 src_box.height = pSrcBox->bottom - pSrcBox->top;
713 src_box.depth = pSrcBox->back - pSrcBox->front;
715 src_box.x = 0;
716 src_box.y = 0;
717 src_box.z = 0 + src_layer
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/
buffer9.c 377 struct pipe_box src_box; local
388 u_box_1d(offset, This->size, &src_box);
392 src_res, 0, &src_box);
volume9.c 429 struct pipe_box src_box; local
443 src_box = *pSrcBox;
445 src_box.x = 0;
446 src_box.y = 0;
447 src_box.z = 0;
448 src_box.width = From->desc.Width;
449 src_box.height = From->desc.Height;
450 src_box.depth = From->desc.Depth;
453 dst_box.width = src_box.width;
454 dst_box.height = src_box.height
    [all...]
surface9.c 558 struct pipe_box dst_box, src_box; local
588 This->desc.Width, This->desc.Height, &src_box);
600 &src_box);
653 struct pipe_box dst_box, src_box; local
682 copy_width, copy_height, &src_box);
708 &src_box);
735 struct pipe_box src_box; local
745 u_box_origin_2d(This->desc.Width, This->desc.Height, &src_box);
746 src_box.z = From->layer;
754 &src_box, &transfer)
    [all...]
  /xsrc/external/mit/xf86-video-qxl/dist/src/uxa/
uxa-unaccel.c 139 BoxRec src_box = { srcx, srcy, srcx + w, srcy + h }; local
142 REGION_INIT (screen, &src_region, &src_box, 1);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_surface.c 215 struct pipe_box src_box, dst_box; local
229 src_box = *src_box_in;
235 dst_box.width = src_box.width;
236 dst_box.height = src_box.height;
237 dst_box.depth = src_box.depth;
276 assert(src_box.x % src_bw == 0);
277 assert(src_box.y % src_bh == 0);
282 assert(src_box.x + src_box.width <= (int)u_minify(src->width0, src_level));
283 assert(src_box.y + src_box.height <= (int)u_minify(src->height0, src_level))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/glx/xlib/
xm_st.c 99 struct pipe_box src_box; local
107 u_box_2d(x, y, width, height, &src_box);
111 src_ptex, 0, &src_box);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/xa/
xa_context.c 255 struct pipe_box src_box; local
260 u_box_2d(sx, sy, width, height, &src_box);
264 0, &src_box);
xa_tracker.c 450 struct pipe_box src_box; local
508 xa_min(save_height, template->height0), &src_box);
510 0, 0, 0, 0, srf->tex, 0, &src_box);
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_texture.c 363 struct pipe_box src_box; local
376 src_box.x = 0;
377 src_box.y = 0;
378 src_box.width = width;
379 src_box.height = height;
380 src_box.depth = 1;
393 src_box.z = i;
405 &src_box);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_blit.c 455 struct pipe_box src_box; local
456 src_box.x = srcX0;
457 src_box.y = srcY0;
458 src_box.z = srcZ0;
459 src_box.width = srcW;
460 src_box.height = srcH;
461 src_box.depth = 1;
466 &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);
331 assert(src_box.x + src_box.width <= (int)u_minify(src->width0, src_level));
332 assert(src_box.y + src_box.height <= (int)u_minify(src->height0, src_level))
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/
nouveau_buffer.c 581 struct pipe_box src_box; local
582 src_box.x = srcx;
583 src_box.y = 0;
584 src_box.z = 0;
585 src_box.width = size;
586 src_box.height = 1;
587 src_box.depth = 1;
590 &src->base, 0, &src_box);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/glx/xlib/
xm_st.c 96 struct pipe_box src_box; local
104 u_box_2d(x, y, width, height, &src_box);
108 src_ptex, 0, &src_box);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/xa/
xa_context.c 255 struct pipe_box src_box; local
260 u_box_2d(sx, sy, width, height, &src_box);
264 0, &src_box);
xa_tracker.c 450 struct pipe_box src_box; local
508 xa_min(save_height, template->height0), &src_box);
510 0, 0, 0, 0, srf->tex, 0, &src_box);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_texture.c 361 struct pipe_box src_box; local
374 src_box.x = 0;
375 src_box.y = 0;
376 src_box.width = width;
377 src_box.height = height;
378 src_box.depth = 1;
391 src_box.z = i;
403 &src_box);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/
nouveau_buffer.c 610 struct pipe_box src_box; local
611 src_box.x = srcx;
612 src_box.y = 0;
613 src_box.z = 0;
614 src_box.width = size;
615 src_box.height = 1;
616 src_box.depth = 1;
619 &src->base, 0, &src_box);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
zink_batch.c 449 struct pipe_box *src_box = &box; local
460 region.srcSubresource.baseArrayLayer = src_box->z;
461 region.srcSubresource.layerCount = src_box->depth;
469 region.srcOffset.z = src_box->z;
470 region.extent.depth = src_box->depth;
480 region.srcOffset.x = src_box->x;
481 region.srcOffset.y = src_box->y;
492 region.dstSubresource.layerCount = src_box->depth;
510 region.extent.width = src_box->width;
511 region.extent.height = src_box->height
    [all...]

Completed in 31 milliseconds

1 2