/external/vulkan-validation-layers/tests/ |
D | vktestbinding.h | 501 VkExtent3D extent(uint32_t mip_level) const { return extent(create_info_.extent, mip_level); } in extent() argument 523 …static VkImageSubresource subresource(VkImageAspectFlags aspect, uint32_t mip_level, uint32_t arra… 524 …static VkImageSubresource subresource(const VkImageSubresourceRange &range, uint32_t mip_level, ui… 525 …static VkImageSubresourceLayers subresource(VkImageAspectFlags aspect, uint32_t mip_level, uint32_… 527 …sourceLayers subresource(const VkImageSubresourceRange &range, uint32_t mip_level, uint32_t array_… 535 static VkExtent2D extent(const VkExtent2D &extent, uint32_t mip_level); 539 static VkExtent3D extent(const VkExtent3D &extent, uint32_t mip_level); 840 inline VkImageSubresource Image::subresource(VkImageAspectFlags aspect, uint32_t mip_level, uint32_… in subresource() argument 846 subres.mipLevel = mip_level; in subresource() 851 …ource Image::subresource(const VkImageSubresourceRange &range, uint32_t mip_level, uint32_t array_… in subresource() argument [all …]
|
/external/mesa3d/src/gallium/drivers/svga/include/ |
D | svga3d_surfacedefs.h | 955 svga3dsurface_get_mip_size(SVGA3dSize base_level, uint32 mip_level) in svga3dsurface_get_mip_size() argument 959 size.width = max_t(uint32, base_level.width >> mip_level, 1); in svga3dsurface_get_mip_size() 960 size.height = max_t(uint32, base_level.height >> mip_level, 1); in svga3dsurface_get_mip_size() 961 size.depth = max_t(uint32, base_level.depth >> mip_level, 1); in svga3dsurface_get_mip_size()
|
/external/vulkan-validation-layers/layers/ |
D | core_validation_types.h | 647 …for (uint32_t mip_level = range.baseMipLevel; mip_level < end_mip; ++mip_level, array_offset += mi… 676 …for (uint32_t mip_level = range.baseMipLevel; mip_level < end_mip; ++mip_level, array_offset += mi… 839 … size_t Encode(uint32_t aspect_index, uint32_t mip_level) const { return Encode(aspect_index) + mi… 840 inline size_t Encode(uint32_t aspect_index, uint32_t mip_level, uint32_t array_layer) const { 841 return Encode(aspect_index, mip_level) + array_layer;
|
D | buffer_validation.cpp | 2090 …:ValidateImageMipLevel(const CMD_BUFFER_STATE *cb_node, const IMAGE_STATE *img, uint32_t mip_level, in ValidateImageMipLevel() argument 2093 if (mip_level >= img->createInfo.mipLevels) { in ValidateImageMipLevel() 2096 …Regions[%u].%s.mipLevel is %u, but provided %s has %u mip levels.", function, i, member, mip_level, in ValidateImageMipLevel()
|
D | core_validation.h | 1499 …Level(const CMD_BUFFER_STATE* cb_node, const IMAGE_STATE* img, uint32_t mip_level, const uint32_t …
|
D | core_validation.cpp | 9522 const uint32_t mip_level = ivci.subresourceRange.baseMipLevel; in ValidateFramebufferCreateInfo() local 9523 uint32_t mip_width = max(1u, ici->extent.width >> mip_level); in ValidateFramebufferCreateInfo() 9524 uint32_t mip_height = max(1u, ici->extent.height >> mip_level); in ValidateFramebufferCreateInfo()
|
/external/mesa3d/src/broadcom/vulkan/ |
D | v3dv_meta_copy.c | 470 uint32_t mip_level, in emit_image_load() argument 474 uint32_t layer_offset = v3dv_layer_offset(image, mip_level, layer); in emit_image_load() 483 const struct v3d_resource_slice *slice = &image->slices[mip_level]; in emit_image_load() 552 uint32_t mip_level, in emit_image_store() argument 557 uint32_t layer_offset = v3dv_layer_offset(image, mip_level, layer); in emit_image_store() 562 const struct v3d_resource_slice *slice = &image->slices[mip_level]; in emit_image_store() 2238 const uint32_t mip_level = region->imageSubresource.mipLevel; in copy_buffer_to_image_tfu() local 2239 if (image->slices[mip_level].tiling == VC5_TILING_RASTER) in copy_buffer_to_image_tfu() 2262 const struct v3d_resource_slice *slice = &image->slices[mip_level]; in copy_buffer_to_image_tfu() 2300 dst_bo->offset + v3dv_layer_offset(image, mip_level, layer); in copy_buffer_to_image_tfu() [all …]
|
D | v3dv_queue.c | 414 &info->image->slices[info->mip_level]; in handle_copy_buffer_to_image_cpu_job() 424 v3dv_layer_offset(info->image, info->mip_level, info->base_layer + i); in handle_copy_buffer_to_image_cpu_job()
|
D | v3dv_private.h | 800 uint32_t mip_level; member
|