HomeSort by: relevance | last modified time | path
    Searched refs:dst_image (Results 1 - 25 of 32) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_copy_image.c 73 struct gl_texture_image *dst_image,
98 if (dst_image) {
99 dst_mt = brw_texture_image(dst_image)->mt;
101 dst_level = dst_image->Level + dst_image->TexObject->Attrib.MinLevel;
104 if (dst_image->TexObject->Target == GL_TEXTURE_CUBE_MAP)
105 dst_z = dst_image->Face;
107 dst_z += dst_image->TexObject->Attrib.MinLayer;
111 dst_image = dst_renderbuffer->TexImage;
brw_blorp.c 692 struct gl_texture_image *dst_image,
700 struct brw_texture_image *intel_image = brw_texture_image(dst_image);
721 if (!brw_blorp_supports_dst_format(brw, dst_image->TexFormat))
747 int dst_slice = slice + dst_image->TexObject->Attrib.MinLayer + dst_image->Face;
748 int dst_level = dst_image->Level + dst_image->TexObject->Attrib.MinLevel;
754 dst_image->TexFormat,
765 if (_mesa_get_format_bits(dst_image->TexFormat, GL_STENCIL_BITS) > 0 &&
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
intel_copy_image.c 73 struct gl_texture_image *dst_image,
98 if (dst_image) {
99 dst_mt = intel_texture_image(dst_image)->mt;
101 dst_level = dst_image->Level + dst_image->TexObject->MinLevel;
104 if (dst_image->TexObject->Target == GL_TEXTURE_CUBE_MAP)
105 dst_z = dst_image->Face;
107 dst_z += dst_image->TexObject->MinLayer;
111 dst_image = dst_renderbuffer->TexImage;
brw_blorp.c 694 struct gl_texture_image *dst_image,
702 struct intel_texture_image *intel_image = intel_texture_image(dst_image);
723 if (!brw_blorp_supports_dst_format(brw, dst_image->TexFormat))
749 int dst_slice = slice + dst_image->TexObject->MinLayer + dst_image->Face;
750 int dst_level = dst_image->Level + dst_image->TexObject->MinLevel;
756 dst_image->TexFormat,
767 if (_mesa_get_format_bits(dst_image->TexFormat, GL_STENCIL_BITS) > 0 &&
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_meta_copy.c 252 RADV_FROM_HANDLE(radv_image, dst_image, pCopyBufferToImageInfo->dstImage);
255 copy_buffer_to_image(cmd_buffer, src_buffer, dst_image,
381 VkImageLayout src_image_layout, struct radv_image *dst_image,
393 assert(src_image->info.samples == dst_image->info.samples);
396 !radv_image_is_renderable(cmd_buffer->device, dst_image);
412 uint32_t queue_mask = radv_image_queue_family_mask(dst_image, cmd_buffer->queue_family_index,
415 if (radv_layout_is_htile_compressed(cmd_buffer->device, dst_image, dst_image_layout,
418 region->extent.width != dst_image->info.width ||
419 region->extent.height != dst_image->info.height ||
420 region->extent.depth != dst_image->info.depth))
    [all...]
radv_meta_resolve.c 317 const struct radv_image *dst_image, VkFormat vk_format, const VkOffset2D *dest_offset,
327 radv_dst_access_flush(cmd_buffer, VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT, dst_image);
348 radv_src_access_flush(cmd_buffer, VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT, dst_image);
359 struct radv_image *dst_image)
362 return dst_image->planes[0].surface.u.gfx9.swizzle_mode ==
365 return dst_image->planes[0].surface.micro_tile_mode ==
445 VkImageLayout src_image_layout, struct radv_image *dst_image,
454 assert(dst_image->info.samples == 1);
456 unsigned fs_key = radv_format_meta_fs_key(device, dst_image->vk_format);
474 radv_meta_get_iview_layer(dst_image, &region->dstSubresource, &region->dstOffset)
    [all...]
radv_meta_copy_vrs_htile.c 216 VkExtent2D *extent, struct radv_image *dst_image,
224 assert(radv_image_has_htile(dst_image));
228 &dst_image->planes[0].surface);
287 dst_image->planes[0].surface.meta_pitch, dst_image->planes[0].surface.meta_slice_size,
radv_meta_blit.c 469 VkImageLayout src_image_layout, struct radv_image *dst_image,
485 assert(dst_image->info.samples == 1);
509 if (dst_image->type == VK_IMAGE_TYPE_3D) {
590 .image = radv_image_to_handle(dst_image),
591 .viewType = radv_meta_get_view_type(dst_image),
592 .format = dst_image->vk_format,
614 src_offset_1, dst_image, &dst_iview, dst_image_layout, dst_offset_0,
634 RADV_FROM_HANDLE(radv_image, dst_image, pBlitImageInfo->dstImage);
637 blit_image(cmd_buffer, src_image, pBlitImageInfo->srcImageLayout, dst_image,
radv_meta_resolve_cs.c 880 struct radv_image *dst_image = dst_iview->image; local
904 .image = radv_image_to_handle(dst_image),
905 .viewType = radv_meta_get_view_type(dst_image),
927 uint32_t queue_mask = radv_image_queue_family_mask(dst_image, cmd_buffer->queue_family_index,
930 if (radv_layout_is_htile_compressed(cmd_buffer->device, dst_image, layout, false, queue_mask)) {
938 uint32_t htile_value = radv_get_htile_initial_value(cmd_buffer->device, dst_image);
940 cmd_buffer->state.flush_bits |= radv_clear_htile(cmd_buffer, dst_image, &range, htile_value);
radv_meta.h 223 VkExtent2D *extent, struct radv_image *dst_image,
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_cb_copyimage.c 539 struct gl_texture_image *dst_image,
552 bool dst_is_compressed = dst_image && _mesa_is_format_compressed(dst_image->TexFormat);
556 if (dst_image)
557 _mesa_get_format_block_size(dst_image->TexFormat, &dst_blk_w, &dst_blk_h);
579 line_bytes = _mesa_format_row_stride(dst_image->TexFormat, dst_w);
581 if (dst_image) {
583 st->ctx, dst_image, dst_z,
613 if (dst_image) {
614 st->ctx->Driver.UnmapTextureImage(st->ctx, dst_image, dst_z)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_cb_copyimage.c 539 struct gl_texture_image *dst_image,
552 bool dst_is_compressed = dst_image && _mesa_is_format_compressed(dst_image->TexFormat);
556 if (dst_image)
557 _mesa_get_format_block_size(dst_image->TexFormat, &dst_blk_w, &dst_blk_h);
579 line_bytes = _mesa_format_row_stride(dst_image->TexFormat, dst_w);
581 if (dst_image) {
583 st->ctx, dst_image, dst_z,
613 if (dst_image) {
614 st->ctx->Driver.UnmapTextureImage(st->ctx, dst_image, dst_z)
    [all...]
  /xsrc/external/mit/xcb-util/dist/image/
test_swap.c 154 xcb_image_t *dst_image; local
207 dst_image = xcb_image_create (test_width, test_height, dst_format, 32, dst_bpp, dst_bpp, dst_unit,
215 xcb_image_convert (src_image, dst_image);
216 if (!compare_image (src_image, dst_image)) {
223 fprintf (stderr, "dst format: "); print_format(dst_image);
227 xcb_image_destroy (dst_image);
  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_picture.c 244 pixman_image_t *dst_image; local
247 dst_image = pixman_image_create_bits(dst_format, w, h, NULL, 0);
248 if (dst_image == NULL) {
255 pixman_image_unref(dst_image);
259 pixman_image_composite(PictOpSrc, src_image, NULL, dst_image,
263 return dst_image;
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
anv_blorp.c 263 ANV_FROM_HANDLE(anv_image, dst_image, dstImage);
272 anv_sanitize_image_offset(dst_image->type, pRegions[r].dstOffset);
278 if (dst_image->type == VK_IMAGE_TYPE_3D) {
284 anv_get_layerCount(dst_image, &pRegions[r].dstSubresource);
311 dst_image, 1UL << aspect_bit,
314 anv_cmd_buffer_mark_image_written(cmd_buffer, dst_image,
332 get_blorp_surf_for_anv_image(cmd_buffer->device, dst_image, dst_mask,
335 anv_cmd_buffer_mark_image_written(cmd_buffer, dst_image, dst_mask,
459 ANV_FROM_HANDLE(anv_image, dst_image, dstImage);
461 copy_buffer_to_image(cmd_buffer, src_buffer, dst_image, dstImageLayout
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
anv_blorp.c 320 struct anv_image *dst_image,
327 anv_sanitize_image_offset(dst_image->vk.image_type, region->dstOffset);
333 if (dst_image->vk.image_type == VK_IMAGE_TYPE_3D) {
338 layer_count = vk_image_subresource_layer_count(&dst_image->vk,
367 dst_image, 1UL << aspect_bit,
371 anv_cmd_buffer_mark_image_written(cmd_buffer, dst_image,
386 dst_image,
404 get_blorp_surf_for_anv_image(cmd_buffer->device, dst_image, dst_mask,
408 anv_cmd_buffer_mark_image_written(cmd_buffer, dst_image, dst_mask,
422 dst_image, dst_mask
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/
tu_meta_copy.c 229 struct tu_image *dst_image,
237 uint64_t dst_va = dst_image->bo->iova + dst_image->bo_offset + dst_image->layer_size * layer + dst_image->levels[copy_info->imageSubresource.mipLevel].offset;
238 unsigned dst_pitch = dst_image->levels[copy_info->imageSubresource.mipLevel].pitch *
293 A6XX_RB_2D_DST_INFO_TILE_MODE(dst_image->tile_mode) |
346 struct tu_image *dst_image,
350 tu_bo_list_add(&cmdbuf->bo_list, dst_image->bo, MSM_SUBMIT_BO_WRITE);
361 VkFormat format = dst_image->vk_format
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/
tu_clear_blit.c 1305 struct tu_image *dst_image,
1354 if (dst_image->layout[0].nr_samples > 1 ||
1366 VkFormat format = dst_image->vk_format;
1379 blit_param, false, dst_image->layout[0].ubwc,
1380 dst_image->layout[0].nr_samples);
1403 tu_image_view_blit(&dst, dst_image, &info->dstSubresource,
1430 dst_image->vk_format,
1447 TU_FROM_HANDLE(tu_image, dst_image, dstImage);
1454 dst_image->vk_format == VK_FORMAT_D32_SFLOAT_S8_UINT) {
1459 tu6_blit_image(cmd, src_image, dst_image, &region, filter)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
radv_meta_resolve_cs.c 519 struct radv_image *dst_image = dst_iview->image; local
542 .image = radv_image_to_handle(dst_image),
543 .viewType = radv_meta_get_view_type(dst_image),
544 .format = vk_to_non_srgb_format(dst_image->vk_format),
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_glyphs.c 1665 pixman_image_t *src_image, *dst_image; local
1786 dst_image = image_from_pict(dst, TRUE, &dst_dx, &dst_dy);
1787 if (dst_image == NULL)
1792 pixman_composite_glyphs(op, src_image, dst_image,
1802 pixman_composite_glyphs_no_mask(op, src_image, dst_image,
1810 free_pixman_pict(dst, dst_image);
1824 dst_image = image_from_pict(dst, TRUE, &x, &y);
1825 if (dst_image == NULL)
1867 mask_image = dst_image;
1939 dst_image,
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_glyphs.c 1631 pixman_image_t *src_image, *dst_image; local
1752 dst_image = image_from_pict(dst, TRUE, &dst_dx, &dst_dy);
1753 if (dst_image == NULL)
1758 pixman_composite_glyphs(op, src_image, dst_image,
1768 pixman_composite_glyphs_no_mask(op, src_image, dst_image,
1776 free_pixman_pict(dst, dst_image);
1790 dst_image = image_from_pict(dst, TRUE, &x, &y);
1791 if (dst_image == NULL)
1833 mask_image = dst_image;
1905 dst_image,
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_shaderlib_tgsi.c 741 struct ureg_dst dst_image = ureg_dst(image); local
743 ureg_memory_insn(ureg, TGSI_OPCODE_STORE, &dst_image, 1, srcs, 2, TGSI_MEMORY_RESTRICT,
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/lavapipe/
lvp_execute.c 2207 LVP_FROM_HANDLE(lvp_image, dst_image, copycmd->dstImage);
2232 box.z = dst_image->vk.image_type == VK_IMAGE_TYPE_3D ? copycmd->pRegions[i].imageOffset.z : copycmd->pRegions[i].imageSubresource.baseArrayLayer;
2235 box.depth = dst_image->vk.image_type == VK_IMAGE_TYPE_3D ? copycmd->pRegions[i].imageExtent.depth : copycmd->pRegions[i].imageSubresource.layerCount;
2238 dst_image->bo,
2244 enum pipe_format dst_format = dst_image->bo->format;
2248 src_format = util_format_get_depth_only(dst_image->bo->format);
2292 LVP_FROM_HANDLE(lvp_image, dst_image, copycmd->dstImage);
2310 unsigned dstz = dst_image->bo->target == PIPE_TEXTURE_3D ?
2313 state->pctx->resource_copy_region(state->pctx, dst_image->bo,
2345 LVP_FROM_HANDLE(lvp_image, dst_image, blitcmd->dstImage)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/api/
dispatch.hpp 381 cl_mem dst_image,
403 cl_mem dst_image,
  /xsrc/external/mit/MesaLib.old/dist/include/CL/
cl.h 1517 cl_mem dst_image,
1539 cl_mem dst_image,

Completed in 29 milliseconds

1 2