| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/ |
| H A D | iris_blit.c | 465 struct iris_resource *dst_res = local in function:iris_blit 488 iris_resource_render_aux_usage(ice, dst_res, info->dst.level, 496 &dst_res->base.b, dst_aux_usage, 499 iris_resource_prepare_render(ice, dst_res, info->dst.level, 502 iris_emit_buffer_barrier_for(batch, dst_res->bo, 508 if (dst_res->base.b.target == PIPE_BUFFER) { 509 util_range_add(&dst_res->base.b, &dst_res->valid_buffer_range, 535 iris_resource_finish_render(ice, dst_res, info->dst.level, 634 struct iris_resource *dst_res local in function:iris_copy_region [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/ |
| H A D | iris_blit.c | 312 struct iris_resource *dst_res = (void *) info->dst.resource; local in function:iris_blit 346 iris_resource_render_aux_usage(ice, dst_res, dst_fmt.fmt, false, false); 355 iris_resource_prepare_access(ice, batch, dst_res, info->dst.level, 1, 432 if (dst_res->base.target == PIPE_BUFFER) 433 util_range_add(&dst_res->valid_buffer_range, dst_x0, dst_x1); 462 struct iris_resource *src_res, *dst_res, *junk; local in function:iris_blit 464 iris_get_depth_stencil_resources(info->dst.resource, &junk, &dst_res); 467 iris_blorp_surf_for_resource(&ice->vtbl, &dst_surf, &dst_res->base, 489 iris_resource_finish_write(ice, dst_res, info->dst.level, info->dst.box.z, 543 struct iris_resource *dst_res local in function:iris_copy_region [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/ |
| H A D | crocus_blit.c | 548 struct crocus_resource *dst_res = local in function:crocus_blit 558 if (crocus_resource_unfinished_aux_import(dst_res)) 559 crocus_resource_finish_aux_import(ctx->screen, dst_res); 582 crocus_resource_render_aux_usage(ice, dst_res, info->dst.level, 590 &dst_res->base.b, dst_aux_usage, 593 crocus_resource_prepare_render(ice, dst_res, info->dst.level, 596 // crocus_emit_buffer_barrier_for(batch, dst_res->bo, 602 if (dst_res->base.b.target == PIPE_BUFFER) { 603 util_range_add(&dst_res->base.b, &dst_res 689 struct crocus_resource *dst_res = (void *) dst; local in function:crocus_copy_region [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_cb_copyimage.c | 540 struct pipe_resource *dst_res, 587 dst = pipe_texture_map(st->pipe, dst_res, 0, dst_z, 638 struct pipe_resource *src_res, *dst_res; local in function:st_CopyImageSubData 665 dst_res = dst->pt; 666 dst_level = stObj->pt != dst_res ? 0 : dst_image->Level; 674 dst_res = dst->texture; 682 fallback_copy_image(st, dst_image, dst_res, dst_x, dst_y, orig_dst_z, 686 copy_image(pipe, dst_res, dst_level, dst_x, dst_y, dst_z, 538 fallback_copy_image(struct st_context * st,struct gl_texture_image * dst_image,struct pipe_resource * dst_res,int dst_x,int dst_y,int dst_z,struct gl_texture_image * src_image,struct pipe_resource * src_res,int src_x,int src_y,int src_z,int src_w,int src_h) argument
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_cb_copyimage.c | 540 struct pipe_resource *dst_res, 587 dst = pipe_transfer_map(st->pipe, dst_res, 0, dst_z, 638 struct pipe_resource *src_res, *dst_res; local in function:st_CopyImageSubData 663 dst_res = dst->pt; 672 dst_res = dst->texture; 680 fallback_copy_image(st, dst_image, dst_res, dst_x, dst_y, orig_dst_z, 684 copy_image(pipe, dst_res, dst_level, dst_x, dst_y, dst_z, 538 fallback_copy_image(struct st_context * st,struct gl_texture_image * dst_image,struct pipe_resource * dst_res,int dst_x,int dst_y,int dst_z,struct gl_texture_image * src_image,struct pipe_resource * src_res,int src_x,int src_y,int src_z,int src_w,int src_h) argument
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/virgl/ |
| H A D | virgl_encode.h | 223 struct virgl_resource *dst_res, 231 struct virgl_resource *dst_res,
|
| H A D | virgl_encode.c | 782 struct virgl_resource *dst_res, 790 virgl_encoder_write_res(ctx, dst_res); 807 struct virgl_resource *dst_res, 822 virgl_encoder_write_res(ctx, dst_res); 781 virgl_encode_resource_copy_region(struct virgl_context * ctx,struct virgl_resource * dst_res,unsigned dst_level,unsigned dstx,unsigned dsty,unsigned dstz,struct virgl_resource * src_res,unsigned src_level,const struct pipe_box * src_box) argument 806 virgl_encode_blit(struct virgl_context * ctx,struct virgl_resource * dst_res,struct virgl_resource * src_res,const struct pipe_blit_info * blit) argument
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/virgl/ |
| H A D | virgl_encode.h | 233 struct virgl_resource *dst_res, 241 struct virgl_resource *dst_res,
|
| H A D | virgl_encode.c | 1133 struct virgl_resource *dst_res, 1141 virgl_encoder_write_res(ctx, dst_res); 1158 struct virgl_resource *dst_res, 1173 virgl_encoder_write_res(ctx, dst_res); 1132 virgl_encode_resource_copy_region(struct virgl_context * ctx,struct virgl_resource * dst_res,unsigned dst_level,unsigned dstx,unsigned dsty,unsigned dstz,struct virgl_resource * src_res,unsigned src_level,const struct pipe_box * src_box) argument 1157 virgl_encode_blit(struct virgl_context * ctx,struct virgl_resource * dst_res,struct virgl_resource * src_res,const struct pipe_blit_info * blit) argument
|
| /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/ |
| H A D | radv_meta_blit.c | 473 const VkImageSubresourceLayers *dst_res = ®ion->dstSubresource; local in function:blit_image 510 assert(dst_res->baseArrayLayer == 0); 514 dst_start = dst_res->baseArrayLayer; 515 dst_end = dst_start + dst_res->layerCount; 593 .subresourceRange = {.aspectMask = dst_res->aspectMask, 594 .baseMipLevel = dst_res->mipLevel,
|
| /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/ |
| H A D | radv_meta_blit.c | 576 const VkImageSubresourceLayers *dst_res = &pRegions[r].dstSubresource; local in function:radv_CmdBlitImage 580 assert(dst_res->baseArrayLayer == 0); 584 dst_start = dst_res->baseArrayLayer; 585 dst_end = dst_start + dst_res->layerCount; 657 .aspectMask = dst_res->aspectMask, 658 .baseMipLevel = dst_res->mipLevel,
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| H A D | anv_blorp.c | 538 const VkImageSubresourceLayers *dst_res = &pRegions[r].dstSubresource; local in function:anv_CmdBlitImage 541 dst_res->aspectMask)); 561 assert(dst_res->baseArrayLayer == 0); 565 dst_start = dst_res->baseArrayLayer; 566 dst_end = dst_start + anv_get_layerCount(dst_image, dst_res); 604 dst_res->mipLevel, 613 &dst, dst_res->mipLevel, dst_z,
|
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| H A D | anv_blorp.c | 682 const VkImageSubresourceLayers *dst_res = ®ion->dstSubresource; local in function:blit_image 699 dst_res->aspectMask)); 720 assert(dst_res->baseArrayLayer == 0); 724 dst_start = dst_res->baseArrayLayer; 726 vk_image_subresource_layer_count(&dst_image->vk, dst_res); 771 dst_res->mipLevel, 780 &dst, dst_res->mipLevel, dst_z,
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/ |
| H A D | nine_state.h | 536 struct pipe_resource* dst_res,
|
| H A D | device9.c | 1571 struct pipe_resource *dst_res = NineSurface9_GetResource(dst); local in function:NineDevice9_StretchRect 1590 zs = util_format_is_depth_or_stencil(dst_res->format); 1625 blit.dst.resource = dst_res; 1629 blit.dst.format = dst_res->format; 1735 user_assert(screen->is_format_supported(screen, dst_res->format, 1736 dst_res->target, 1737 dst_res->nr_samples, 1738 dst_res->nr_storage_samples,
|
| H A D | nine_state.c | 2429 ARG_BIND_RES(struct pipe_resource, dst_res), 2442 dst_res, dst_level,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/ |
| H A D | nine_state.h | 550 struct pipe_resource* dst_res,
|
| H A D | device9.c | 1680 struct pipe_resource *dst_res, *src_res; local in function:NineDevice9_StretchRect 1700 dst_res = NineSurface9_GetResource(dst); 1702 zs = util_format_is_depth_or_stencil(dst_res->format); 1737 blit.dst.resource = dst_res; 1741 blit.dst.format = dst_res->format; 1847 user_assert(screen->is_format_supported(screen, dst_res->format, 1848 dst_res->target, 1849 dst_res->nr_samples, 1850 dst_res->nr_storage_samples,
|
| H A D | nine_state.c | 2465 ARG_BIND_RES(struct pipe_resource, dst_res), 2478 dst_res, dst_level,
|