Home
last modified time | relevance | path

Searched refs:mip_level (Results 1 – 5 of 5) sorted by relevance

/external/vulkan-validation-layers/tests/
Dvktestbinding.h496 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/
Dsvga3d_surfacedefs.h952 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/
Dbuffer_validation.cpp2055 … 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()
2062mip_level, report_data->FormatHandle(img->image).c_str(), img->createInfo.mipLevels); in ValidateImageMipLevel()
Dcore_validation.h911 …layer_data* device_data, const GLOBAL_CB_NODE* cb_node, const IMAGE_STATE* img, uint32_t mip_level,
Dcore_validation.cpp8989 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()