1 /*------------------------------------------------------------------------
2 * Vulkan Conformance Tests
3 * ------------------------
5 * Copyright (c) 2016 The Khronos Group Inc.
6 * Copyright (c) 2016 The Android Open Source Project
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
22 * \brief Image load/store utilities
23 *//*--------------------------------------------------------------------*/
25 #include "vktImageLoadStoreUtil.hpp"
26 #include "vkQueryUtil.hpp"
35 float computeStoreColorScale (const vk::VkFormat format, const tcu::IVec3 imageSize)
37 const int maxImageDimension = de::max(imageSize.x(), de::max(imageSize.y(), imageSize.z()));
38 const float div = static_cast<float>(maxImageDimension - 1);
40 if (isUnormFormat(format))
42 else if (isSnormFormat(format))
48 ImageType getImageTypeForSingleLayer (const ImageType imageType)
53 case IMAGE_TYPE_1D_ARRAY:
57 case IMAGE_TYPE_2D_ARRAY:
59 case IMAGE_TYPE_CUBE_ARRAY:
60 // A single layer for cube is a 2d face
66 case IMAGE_TYPE_BUFFER:
67 return IMAGE_TYPE_BUFFER;
70 DE_FATAL("Internal test error");
71 return IMAGE_TYPE_LAST;
75 VkImageCreateInfo makeImageCreateInfo (const Texture& texture, const VkFormat format, const VkImageUsageFlags usage, const VkImageCreateFlags flags)
77 const VkSampleCountFlagBits samples = static_cast<VkSampleCountFlagBits>(texture.numSamples()); // integer and bit mask are aligned, so we can cast like this
79 const VkImageCreateInfo imageParams =
81 VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO, // VkStructureType sType;
82 DE_NULL, // const void* pNext;
83 (isCube(texture) ? (VkImageCreateFlags)VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT : 0u) | flags, // VkImageCreateFlags flags;
84 mapImageType(texture.type()), // VkImageType imageType;
85 format, // VkFormat format;
86 makeExtent3D(texture.layerSize()), // VkExtent3D extent;
87 1u, // deUint32 mipLevels;
88 (deUint32)texture.numLayers(), // deUint32 arrayLayers;
89 samples, // VkSampleCountFlagBits samples;
90 VK_IMAGE_TILING_OPTIMAL, // VkImageTiling tiling;
91 usage, // VkImageUsageFlags usage;
92 VK_SHARING_MODE_EXCLUSIVE, // VkSharingMode sharingMode;
93 0u, // deUint32 queueFamilyIndexCount;
94 DE_NULL, // const deUint32* pQueueFamilyIndices;
95 VK_IMAGE_LAYOUT_UNDEFINED, // VkImageLayout initialLayout;
101 //! Minimum chunk size is determined by the offset alignment requirements.
102 VkDeviceSize getOptimalUniformBufferChunkSize (const InstanceInterface& vki, const VkPhysicalDevice physDevice, VkDeviceSize minimumRequiredChunkSizeBytes)
104 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
105 const VkDeviceSize alignment = properties.limits.minUniformBufferOffsetAlignment;
107 if (minimumRequiredChunkSizeBytes > alignment)
108 return alignment + (minimumRequiredChunkSizeBytes / alignment) * alignment;