Home
last modified time | relevance | path

Searched refs:dst_image (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
Dst_cb_copyimage.c538 struct gl_texture_image *dst_image, in fallback_copy_image() argument
551 bool dst_is_compressed = dst_image && _mesa_is_format_compressed(dst_image->TexFormat); in fallback_copy_image()
572 line_bytes = _mesa_format_row_stride(dst_image->TexFormat, dst_w); in fallback_copy_image()
574 if (dst_image) { in fallback_copy_image()
576 st->ctx, dst_image, dst_z, in fallback_copy_image()
606 if (dst_image) { in fallback_copy_image()
607 st->ctx->Driver.UnmapTextureImage(st->ctx, dst_image, dst_z); in fallback_copy_image()
624 struct gl_texture_image *dst_image, in st_CopyImageSubData() argument
654 if (dst_image) { in st_CopyImageSubData()
655 struct st_texture_image *dst = st_texture_image(dst_image); in st_CopyImageSubData()
[all …]
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_copy_image.c177 struct gl_texture_image *dst_image, in intel_copy_image_sub_data() argument
202 if (dst_image) { in intel_copy_image_sub_data()
203 dst_mt = intel_texture_image(dst_image)->mt; in intel_copy_image_sub_data()
205 dst_level = dst_image->Level + dst_image->TexObject->MinLevel; in intel_copy_image_sub_data()
208 if (dst_image->TexObject->Target == GL_TEXTURE_CUBE_MAP) in intel_copy_image_sub_data()
209 dst_z = dst_image->Face; in intel_copy_image_sub_data()
211 dst_z += dst_image->TexObject->MinLayer; in intel_copy_image_sub_data()
215 dst_image = dst_renderbuffer->TexImage; in intel_copy_image_sub_data()
Dbrw_blorp.c600 struct gl_texture_image *dst_image, in brw_blorp_copytexsubimage() argument
608 struct intel_texture_image *intel_image = intel_texture_image(dst_image); in brw_blorp_copytexsubimage()
631 _mesa_get_format_base_format(dst_image->TexFormat)) { in brw_blorp_copytexsubimage()
644 if (!brw->format_supported_as_render_target[dst_image->TexFormat]) in brw_blorp_copytexsubimage()
674 int dst_slice = slice + dst_image->TexObject->MinLayer + dst_image->Face; in brw_blorp_copytexsubimage()
675 int dst_level = dst_image->Level + dst_image->TexObject->MinLevel; in brw_blorp_copytexsubimage()
681 dst_image->TexFormat, in brw_blorp_copytexsubimage()
692 if (_mesa_get_format_bits(dst_image->TexFormat, GL_STENCIL_BITS) > 0 && in brw_blorp_copytexsubimage()
Dbrw_context.h1518 struct gl_texture_image *dst_image,
/external/libvpx/libvpx/test/
Dpp_filter_test.cc64 Buffer<uint8_t> dst_image = in TEST_P() local
78 dst_image.Set(99); in TEST_P()
81 src_image.TopLeftPixel(), dst_image.TopLeftPixel(), src_image.stride(), in TEST_P()
82 dst_image.stride(), block_width, flimits, 16)); in TEST_P()
88 uint8_t *pixel_ptr = dst_image.TopLeftPixel(); in TEST_P()
94 pixel_ptr += dst_image.stride(); in TEST_P()
117 Buffer<uint8_t> dst_image = in TEST_P() local
142 dst_image.Set(0); in TEST_P()
150 GetParam()(src_image.TopLeftPixel(), dst_image.TopLeftPixel(), in TEST_P()
151 src_image.stride(), dst_image.stride(), block_width, in TEST_P()
[all …]
/external/vboot_reference/scripts/image_signing/
Dswap_rootfs.sh13 Usage: $PROG dst_image src_image
14 This will put the root file system from src_image into dst_image.
/external/mesa3d/src/intel/vulkan/
Danv_blorp.c211 ANV_FROM_HANDLE(anv_image, dst_image, dstImage); in anv_CmdCopyImage()
220 anv_sanitize_image_offset(dst_image->type, pRegions[r].dstOffset); in anv_CmdCopyImage()
225 if (dst_image->type == VK_IMAGE_TYPE_3D) { in anv_CmdCopyImage()
231 anv_get_layerCount(dst_image, &pRegions[r].dstSubresource); in anv_CmdCopyImage()
253 get_blorp_surf_for_anv_image(dst_image, aspect, dst_image->aux_usage, in anv_CmdCopyImage()
369 ANV_FROM_HANDLE(anv_image, dst_image, dstImage); in anv_CmdCopyBufferToImage()
371 copy_buffer_to_image(cmd_buffer, src_buffer, dst_image, in anv_CmdCopyBufferToImage()
425 ANV_FROM_HANDLE(anv_image, dst_image, dstImage); in anv_CmdBlitImage()
450 get_blorp_surf_for_anv_image(dst_image, dst_res->aspectMask, in anv_CmdBlitImage()
451 dst_image->aux_usage, &dst); in anv_CmdBlitImage()
[all …]
/external/mesa3d/src/gallium/state_trackers/clover/api/
Ddispatch.hpp373 cl_mem dst_image,
395 cl_mem dst_image,
/external/vulkan-validation-layers/layers/
Dimage.cpp759 …CmdCopyImage(VkCommandBuffer command_buffer, VkImage src_image, VkImage dst_image, uint32_t region… in PreCallValidateCmdCopyImage() argument
764 auto dst_image_entry = getImageState(device_data, dst_image); in PreCallValidateCmdCopyImage()
901 if (src_image == dst_image) { in PreCallValidateCmdCopyImage()
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp2448 vk_testing::Image dst_image; in TEST_F() local
2449 dst_image.init(*m_device, (const VkImageCreateInfo &)image_create_info, reqs); in TEST_F()
2455dst_image.handle(), VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL, 1, &blit_region, VK_FILTER_NEAREST); in TEST_F()
2469 vk_testing::Image dst_image; in TEST_F() local
2470 dst_image.init(*m_device, (const VkImageCreateInfo &)image_create_info, reqs); in TEST_F()
2476dst_image.handle(), VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL, 1, &blit_region, VK_FILTER_NEAREST); in TEST_F()
2498 vk_testing::Image dst_image; in TEST_F() local
2499 dst_image.init(*m_device, (const VkImageCreateInfo &)image_create_info, reqs); in TEST_F()
2504 …vkCmdCopyBufferToImage(m_commandBuffer->GetBufferHandle(), src_buffer.handle(), dst_image.handle(), in TEST_F()
2541 VkImageObj dst_image(m_device); in TEST_F() local
[all …]