Searched refs:mip_level (Results 1 – 5 of 5) sorted by relevance
/external/vulkan-validation-layers/tests/ |
D | vktestbinding.h | 496 VkExtent3D extent(uint32_t mip_level) const { return extent(create_info_.extent, mip_level); } in extent() argument 519 …static VkImageSubresource subresource(VkImageAspectFlags aspect, uint32_t mip_level, uint32_t arra… 520 …static VkImageSubresource subresource(const VkImageSubresourceRange &range, uint32_t mip_level, ui… 521 …static VkImageSubresourceLayers subresource(VkImageAspectFlags aspect, uint32_t mip_level, uint32_… 523 …sourceLayers subresource(const VkImageSubresourceRange &range, uint32_t mip_level, uint32_t array_… 531 static VkExtent2D extent(const VkExtent2D &extent, uint32_t mip_level); 535 static VkExtent3D extent(const VkExtent3D &extent, uint32_t mip_level); 808 inline VkImageSubresource Image::subresource(VkImageAspectFlags aspect, uint32_t mip_level, uint32_… in subresource() argument 814 subres.mipLevel = mip_level; in subresource() 819 …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 | 952 svga3dsurface_get_mip_size(SVGA3dSize base_level, uint32 mip_level) in svga3dsurface_get_mip_size() argument 956 size.width = max_t(uint32, base_level.width >> mip_level, 1); in svga3dsurface_get_mip_size() 957 size.height = max_t(uint32, base_level.height >> mip_level, 1); in svga3dsurface_get_mip_size() 958 size.depth = max_t(uint32, base_level.depth >> mip_level, 1); in svga3dsurface_get_mip_size()
|
/external/vulkan-validation-layers/layers/ |
D | buffer_validation.cpp | 2055 … uint32_t mip_level, const uint32_t i, const char *function, const char *member, in ValidateImageMipLevel() argument 2058 if (mip_level >= img->createInfo.mipLevels) { in ValidateImageMipLevel() 2062 … mip_level, report_data->FormatHandle(img->image).c_str(), img->createInfo.mipLevels); in ValidateImageMipLevel()
|
D | core_validation.h | 911 …layer_data* device_data, const GLOBAL_CB_NODE* cb_node, const IMAGE_STATE* img, uint32_t mip_level,
|
D | core_validation.cpp | 8989 const uint32_t mip_level = ivci.subresourceRange.baseMipLevel; in ValidateFramebufferCreateInfo() local 8990 uint32_t mip_width = max(1u, ici->extent.width >> mip_level); in ValidateFramebufferCreateInfo() 8991 uint32_t mip_height = max(1u, ici->extent.height >> mip_level); in ValidateFramebufferCreateInfo()
|