/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_blit.c | 485 struct iris_resource *dst_res = in iris_blit() local 508 iris_resource_render_aux_usage(ice, dst_res, info->dst.level, in iris_blit() 516 &dst_res->base.b, dst_aux_usage, in iris_blit() 519 iris_resource_prepare_render(ice, dst_res, info->dst.level, in iris_blit() 522 iris_emit_buffer_barrier_for(batch, dst_res->bo, in iris_blit() 528 if (dst_res->base.b.target == PIPE_BUFFER) { in iris_blit() 529 util_range_add(&dst_res->base.b, &dst_res->valid_buffer_range, in iris_blit() 555 iris_resource_finish_render(ice, dst_res, info->dst.level, in iris_blit() 662 struct iris_resource *dst_res in iris_copy_region() local [all...] |
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_blit.c | 548 struct crocus_resource *dst_res = in crocus_blit() local 558 if (crocus_resource_unfinished_aux_import(dst_res)) in crocus_blit() 559 crocus_resource_finish_aux_import(ctx->screen, dst_res); in crocus_blit() 582 crocus_resource_render_aux_usage(ice, dst_res, info->dst.level, in crocus_blit() 590 &dst_res->base.b, dst_aux_usage, in crocus_blit() 593 crocus_resource_prepare_render(ice, dst_res, info->dst.level, in crocus_blit() 596 // crocus_emit_buffer_barrier_for(batch, dst_res->bo, in crocus_blit() 602 if (dst_res->base.b.target == PIPE_BUFFER) { in crocus_blit() 603 util_range_add(&dst_res->base.b, &dst_res in crocus_blit() 689 struct crocus_resource *dst_res = (void *) dst; crocus_copy_region() local [all...] |
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_cb_copyimage.c | 551 struct pipe_resource *dst_res, in fallback_copy_image() 598 dst = pipe_texture_map(st->pipe, dst_res, 0, dst_z, in fallback_copy_image() 649 struct pipe_resource *src_res, *dst_res; in st_CopyImageSubData() local 675 dst_res = dst->pt; in st_CopyImageSubData() 676 dst_level = stObj->pt != dst_res ? 0 : dst_image->Level; in st_CopyImageSubData() 683 dst_res = dst_renderbuffer->texture; in st_CopyImageSubData() 691 fallback_copy_image(st, dst_image, dst_res, dst_x, dst_y, orig_dst_z, in st_CopyImageSubData() 695 copy_image(pipe, dst_res, dst_level, dst_x, dst_y, dst_z, in st_CopyImageSubData() 549 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) fallback_copy_image() argument
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_blit.c | 271 struct lima_resource *dst_res = lima_resource(dst_surf->texture); in lima_do_blit() local 274 lima_flush_job_accessing_bo(ctx, dst_res->bo, true); in lima_do_blit() 277 _mesa_hash_table_insert(ctx->write_jobs, &dst_res->base, job); in lima_do_blit() 278 lima_job_add_bo(job, LIMA_PIPE_PP, dst_res->bo, LIMA_SUBMIT_BO_WRITE); in lima_do_blit()
|
/third_party/mesa3d/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 | 1150 struct virgl_resource *dst_res, in virgl_encode_resource_copy_region() 1158 virgl_encoder_write_res(ctx, dst_res); in virgl_encode_resource_copy_region() 1175 struct virgl_resource *dst_res, in virgl_encode_blit() 1190 virgl_encoder_write_res(ctx, dst_res); in virgl_encode_blit() 1149 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) virgl_encode_resource_copy_region() argument 1174 virgl_encode_blit(struct virgl_context *ctx, struct virgl_resource *dst_res, struct virgl_resource *src_res, const struct pipe_blit_info *blit) virgl_encode_blit() argument
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_meta_blit.c | 464 const VkImageSubresourceLayers *dst_res = ®ion->dstSubresource; in blit_image() local 497 assert(dst_res->baseArrayLayer == 0); in blit_image() 501 dst_start = dst_res->baseArrayLayer; in blit_image() 502 dst_end = dst_start + dst_res->layerCount; in blit_image() 580 .subresourceRange = {.aspectMask = dst_res->aspectMask, in blit_image() 581 .baseMipLevel = dst_res->mipLevel, in blit_image()
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_blorp.c | 651 const VkImageSubresourceLayers *dst_res = ®ion->dstSubresource; in blit_image() local 668 dst_res->aspectMask)); in blit_image() 689 assert(dst_res->baseArrayLayer == 0); in blit_image() 693 dst_start = dst_res->baseArrayLayer; in blit_image() 695 vk_image_subresource_layer_count(&dst_image->vk, dst_res); in blit_image() 740 dst_res->mipLevel, in blit_image() 749 &dst, dst_res->mipLevel, dst_z, in blit_image()
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | device9.c | 1680 struct pipe_resource *dst_res, *src_res; in NineDevice9_StretchRect() local 1700 dst_res = NineSurface9_GetResource(dst); in NineDevice9_StretchRect() 1702 zs = util_format_is_depth_or_stencil(dst_res->format); in NineDevice9_StretchRect() 1737 blit.dst.resource = dst_res; in NineDevice9_StretchRect() 1741 blit.dst.format = dst_res->format; in NineDevice9_StretchRect() 1847 user_assert(screen->is_format_supported(screen, dst_res->format, in NineDevice9_StretchRect() 1848 dst_res->target, in NineDevice9_StretchRect() 1849 dst_res->nr_samples, in NineDevice9_StretchRect() 1850 dst_res->nr_storage_samples, in NineDevice9_StretchRect()
|
H A D | nine_state.h | 550 struct pipe_resource* dst_res,
|
H A D | nine_state.c | 2472 ARG_BIND_RES(struct pipe_resource, dst_res), in CSMT_ITEM_NO_WAIT() 2485 dst_res, dst_level, in CSMT_ITEM_NO_WAIT()
|