Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 1 | // Copyright 2005, Google Inc. |
| 2 | // All rights reserved. |
| 3 | // |
| 4 | // Redistribution and use in source and binary forms, with or without |
| 5 | // modification, are permitted provided that the following conditions are |
| 6 | // met: |
| 7 | // |
| 8 | // * Redistributions of source code must retain the above copyright |
| 9 | // notice, this list of conditions and the following disclaimer. |
| 10 | // * Redistributions in binary form must reproduce the above |
| 11 | // copyright notice, this list of conditions and the following disclaimer |
| 12 | // in the documentation and/or other materials provided with the |
| 13 | // distribution. |
| 14 | // * Neither the name of Google Inc. nor the names of its |
| 15 | // contributors may be used to endorse or promote products derived from |
| 16 | // this software without specific prior written permission. |
| 17 | // |
| 18 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | |
| 30 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 31 | // VK tests |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 32 | // |
| 33 | // Copyright (C) 2014 LunarG, Inc. |
| 34 | // |
| 35 | // Permission is hereby granted, free of charge, to any person obtaining a |
| 36 | // copy of this software and associated documentation files (the "Software"), |
| 37 | // to deal in the Software without restriction, including without limitation |
| 38 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 39 | // and/or sell copies of the Software, and to permit persons to whom the |
| 40 | // Software is furnished to do so, subject to the following conditions: |
| 41 | // |
| 42 | // The above copyright notice and this permission notice shall be included |
| 43 | // in all copies or substantial portions of the Software. |
| 44 | // |
| 45 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 46 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 47 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 48 | // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 49 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 50 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 51 | // DEALINGS IN THE SOFTWARE. |
| 52 | |
| 53 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 54 | // Verify VK driver initialization |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 55 | |
| 56 | #include <stdlib.h> |
| 57 | #include <stdio.h> |
| 58 | #include <stdbool.h> |
| 59 | #include <string.h> |
| 60 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 61 | #include <vulkan.h> |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 62 | #include "gtest-1.7.0/include/gtest/gtest.h" |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 63 | #include "vktestbinding.h" |
Chia-I Wu | 3b78d31 | 2014-12-29 15:39:23 +0800 | [diff] [blame] | 64 | #include "test_common.h" |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 65 | |
Jon Ashburn | 07b309a | 2015-04-15 11:31:12 -0600 | [diff] [blame^] | 66 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) |
| 67 | |
Tony Barbour | 0199918 | 2015-04-09 12:58:51 -0600 | [diff] [blame] | 68 | class VkImageTest : public ::testing::Test { |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 69 | public: |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 70 | void CreateImage(uint32_t w, uint32_t h); |
Courtney Goeltzenleuchter | 263e7f5 | 2014-08-14 17:41:57 -0600 | [diff] [blame] | 71 | void DestroyImage(); |
| 72 | |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 73 | void CreateImageView(VkImageViewCreateInfo* pCreateInfo, |
| 74 | VkImageView* pView); |
| 75 | void DestroyImageView(VkImageView imageView); |
| 76 | VkDevice device() {return m_device->obj();} |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 77 | |
| 78 | protected: |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 79 | vk_testing::Device *m_device; |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 80 | VkApplicationInfo app_info; |
Jon Ashburn | 07b309a | 2015-04-15 11:31:12 -0600 | [diff] [blame^] | 81 | VkPhysicalGpu objs[16]; |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 82 | uint32_t gpu_count; |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 83 | VkInstance inst; |
| 84 | VkImage m_image; |
| 85 | VkGpuMemory *m_image_mem; |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 86 | uint32_t m_num_mem; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 87 | |
| 88 | virtual void SetUp() { |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 89 | VkResult err; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 90 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 91 | this->app_info.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 92 | this->app_info.pNext = NULL; |
Chia-I Wu | 7461fcf | 2014-12-27 15:16:07 +0800 | [diff] [blame] | 93 | this->app_info.pAppName = "base"; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 94 | this->app_info.appVersion = 1; |
Chia-I Wu | 7461fcf | 2014-12-27 15:16:07 +0800 | [diff] [blame] | 95 | this->app_info.pEngineName = "unittest"; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 96 | this->app_info.engineVersion = 1; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 97 | this->app_info.apiVersion = VK_API_VERSION; |
Courtney Goeltzenleuchter | ddcb619 | 2015-04-14 18:48:46 -0600 | [diff] [blame] | 98 | VkInstanceCreateInfo inst_info = {}; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 99 | inst_info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO; |
Jon Ashburn | 29669a4 | 2015-04-04 14:52:07 -0600 | [diff] [blame] | 100 | inst_info.pNext = NULL; |
| 101 | inst_info.pAppInfo = &app_info; |
| 102 | inst_info.pAllocCb = NULL; |
| 103 | inst_info.extensionCount = 0; |
| 104 | inst_info.ppEnabledExtensionNames = NULL; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 105 | err = vkCreateInstance(&inst_info, &this->inst); |
| 106 | ASSERT_VK_SUCCESS(err); |
Jon Ashburn | 07b309a | 2015-04-15 11:31:12 -0600 | [diff] [blame^] | 107 | err = vkEnumeratePhysicalDevices(this->inst, &this->gpu_count, NULL); |
| 108 | ASSERT_VK_SUCCESS(err); |
| 109 | ASSERT_LE(this->gpu_count, ARRAY_SIZE(objs)) << "Too many GPUs"; |
| 110 | err = vkEnumeratePhysicalDevices(this->inst, &this->gpu_count, objs); |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 111 | ASSERT_VK_SUCCESS(err); |
Jon Ashburn | 19733c9 | 2014-11-26 11:06:49 -0700 | [diff] [blame] | 112 | ASSERT_GE(this->gpu_count, 1) << "No GPU available"; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 113 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 114 | this->m_device = new vk_testing::Device(objs[0]); |
Chia-I Wu | 3b78d31 | 2014-12-29 15:39:23 +0800 | [diff] [blame] | 115 | this->m_device->init(); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | virtual void TearDown() { |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 119 | vkDestroyInstance(this->inst); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 120 | } |
| 121 | }; |
| 122 | |
| 123 | |
Tony Barbour | 0199918 | 2015-04-09 12:58:51 -0600 | [diff] [blame] | 124 | void VkImageTest::CreateImage(uint32_t w, uint32_t h) |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 125 | { |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 126 | VkResult err; |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 127 | uint32_t mipCount; |
| 128 | size_t size; |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 129 | VkFormat fmt; |
| 130 | VkFormatProperties image_fmt; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 131 | |
| 132 | mipCount = 0; |
| 133 | |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 134 | uint32_t _w = w; |
| 135 | uint32_t _h = h; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 136 | while( ( _w > 0 ) || ( _h > 0 ) ) |
| 137 | { |
| 138 | _w >>= 1; |
| 139 | _h >>= 1; |
| 140 | mipCount++; |
| 141 | } |
| 142 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 143 | fmt = VK_FMT_R8G8B8A8_UINT; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 144 | // TODO: Pick known good format rather than just expect common format |
| 145 | /* |
| 146 | * XXX: What should happen if given NULL HANDLE for the pData argument? |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 147 | * We're not requesting VK_INFO_TYPE_MEMORY_REQUIREMENTS so there is |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 148 | * an expectation that pData is a valid pointer. |
| 149 | * However, why include a returned size value? That implies that the |
| 150 | * amount of data may vary and that doesn't work well for using a |
| 151 | * fixed structure. |
| 152 | */ |
Jon Ashburn | b8e4389 | 2014-09-25 14:36:58 -0600 | [diff] [blame] | 153 | size = sizeof(image_fmt); |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 154 | err = vkGetFormatInfo(this->device(), fmt, |
| 155 | VK_INFO_TYPE_FORMAT_PROPERTIES, |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 156 | &size, &image_fmt); |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 157 | ASSERT_VK_SUCCESS(err); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 158 | |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 159 | // typedef struct VkImageCreateInfo_ |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 160 | // { |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 161 | // VkStructureType sType; // Must be VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 162 | // const void* pNext; // Pointer to next structure. |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 163 | // VkImageType imageType; |
| 164 | // VkFormat format; |
| 165 | // VkExtent3D extent; |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 166 | // uint32_t mipLevels; |
| 167 | // uint32_t arraySize; |
| 168 | // uint32_t samples; |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 169 | // VkImageTiling tiling; |
| 170 | // VkFlags usage; // VkImageUsageFlags |
| 171 | // VkFlags flags; // VkImageCreateFlags |
| 172 | // } VkImageCreateInfo; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 173 | |
| 174 | |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 175 | VkImageCreateInfo imageCreateInfo = {}; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 176 | imageCreateInfo.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO; |
| 177 | imageCreateInfo.imageType = VK_IMAGE_2D; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 178 | imageCreateInfo.format = fmt; |
| 179 | imageCreateInfo.arraySize = 1; |
| 180 | imageCreateInfo.extent.width = w; |
| 181 | imageCreateInfo.extent.height = h; |
| 182 | imageCreateInfo.extent.depth = 1; |
| 183 | imageCreateInfo.mipLevels = mipCount; |
| 184 | imageCreateInfo.samples = 1; |
Courtney Goeltzenleuchter | ad87081 | 2015-04-15 15:29:59 -0600 | [diff] [blame] | 185 | if (image_fmt.linearTilingFeatures & VK_FORMAT_SAMPLED_IMAGE_BIT) { |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 186 | imageCreateInfo.tiling = VK_LINEAR_TILING; |
Tony Barbour | bb6a413 | 2015-03-31 08:59:00 -0600 | [diff] [blame] | 187 | } |
Courtney Goeltzenleuchter | ad87081 | 2015-04-15 15:29:59 -0600 | [diff] [blame] | 188 | else if (image_fmt.optimalTilingFeatures & VK_FORMAT_SAMPLED_IMAGE_BIT) { |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 189 | imageCreateInfo.tiling = VK_OPTIMAL_TILING; |
Tony Barbour | bb6a413 | 2015-03-31 08:59:00 -0600 | [diff] [blame] | 190 | } |
| 191 | else { |
| 192 | ASSERT_TRUE(false) << "Cannot find supported tiling format - Exiting"; |
| 193 | } |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 194 | |
| 195 | // Image usage flags |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 196 | // VK_IMAGE_USAGE_DEPTH_STENCIL_BIT = 0x00000008, |
Courtney Goeltzenleuchter | ad87081 | 2015-04-15 15:29:59 -0600 | [diff] [blame] | 197 | //typedef enum VkImageUsageFlags_ |
| 198 | //{ |
| 199 | // VK_IMAGE_USAGE_GENERAL = 0x00000000, // no special usage |
| 200 | // VK_IMAGE_USAGE_TRANSFER_SOURCE_BIT = 0x00000001, // Can be used as a source of transfer operations |
| 201 | // VK_IMAGE_USAGE_TRANSFER_DESTINATION_BIT = 0x00000002, // Can be used as a destination of transfer operations |
| 202 | // VK_IMAGE_USAGE_SAMPLED_BIT = 0x00000004, // Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types) |
| 203 | // VK_IMAGE_USAGE_STORAGE_BIT = 0x00000008, // Can be used as storage image (STORAGE_IMAGE descriptor type) |
| 204 | // VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT = 0x00000010, // Can be used as framebuffer color attachment |
| 205 | // VK_IMAGE_USAGE_DEPTH_STENCIL_BIT = 0x00000020, // Can be used as framebuffer depth/stencil attachment |
| 206 | // VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT = 0x00000040, // Image data not needed outside of rendering |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 207 | // } VkImageUsageFlags; |
Courtney Goeltzenleuchter | ad87081 | 2015-04-15 15:29:59 -0600 | [diff] [blame] | 208 | imageCreateInfo.usage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 209 | |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 210 | // VkResult VKAPI vkCreateImage( |
| 211 | // VkDevice device, |
| 212 | // const VkImageCreateInfo* pCreateInfo, |
| 213 | // VkImage* pImage); |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 214 | err = vkCreateImage(device(), &imageCreateInfo, &m_image); |
| 215 | ASSERT_VK_SUCCESS(err); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 216 | |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 217 | VkMemoryRequirements *mem_req; |
| 218 | size_t mem_reqs_size = sizeof(VkMemoryRequirements); |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 219 | uint32_t num_allocations = 0; |
| 220 | size_t num_alloc_size = sizeof(num_allocations); |
Tony Barbour | 901f3bc | 2015-04-01 17:10:07 -0600 | [diff] [blame] | 221 | |
Courtney Goeltzenleuchter | ddcb619 | 2015-04-14 18:48:46 -0600 | [diff] [blame] | 222 | VkMemoryAllocInfo mem_info = {}; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 223 | mem_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOC_INFO; |
Mark Lobodzinski | 97dcd04 | 2015-04-16 08:52:00 -0500 | [diff] [blame] | 224 | mem_info.pNext = NULL; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 225 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 226 | err = vkGetObjectInfo(m_image, VK_INFO_TYPE_MEMORY_ALLOCATION_COUNT, |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 227 | &num_alloc_size, &num_allocations); |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 228 | ASSERT_VK_SUCCESS(err); |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 229 | ASSERT_EQ(num_alloc_size,sizeof(num_allocations)); |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 230 | mem_req = (VkMemoryRequirements *) malloc(num_allocations * sizeof(VkMemoryRequirements)); |
| 231 | m_image_mem = (VkGpuMemory *) malloc(num_allocations * sizeof(VkGpuMemory)); |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 232 | m_num_mem = num_allocations; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 233 | err = vkGetObjectInfo(m_image, |
| 234 | VK_INFO_TYPE_MEMORY_REQUIREMENTS, |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 235 | &mem_reqs_size, mem_req); |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 236 | ASSERT_VK_SUCCESS(err); |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 237 | ASSERT_EQ(mem_reqs_size, num_allocations * sizeof(VkMemoryRequirements)); |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 238 | |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 239 | for (uint32_t i = 0; i < num_allocations; i ++) { |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 240 | ASSERT_NE(0, mem_req[i].size) << "vkGetObjectInfo (Image): Failed - expect images to require memory"; |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 241 | mem_info.allocationSize = mem_req[i].size; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 242 | mem_info.memProps = VK_MEMORY_PROPERTY_SHAREABLE_BIT; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 243 | mem_info.memPriority = VK_MEMORY_PRIORITY_NORMAL; |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 244 | |
| 245 | /* allocate memory */ |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 246 | err = vkAllocMemory(device(), &mem_info, &m_image_mem[i]); |
| 247 | ASSERT_VK_SUCCESS(err); |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 248 | |
| 249 | /* bind memory */ |
Mark Lobodzinski | cf26e07 | 2015-04-16 11:44:05 -0500 | [diff] [blame] | 250 | VkQueue queue = m_device->graphics_queues()[0]->obj(); |
| 251 | err = vkQueueBindObjectMemory(queue, m_image, i, m_image_mem[i], 0); |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 252 | ASSERT_VK_SUCCESS(err); |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 253 | } |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 254 | } |
| 255 | |
Tony Barbour | 0199918 | 2015-04-09 12:58:51 -0600 | [diff] [blame] | 256 | void VkImageTest::DestroyImage() |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 257 | { |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 258 | VkResult err; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 259 | // All done with image memory, clean up |
Mark Lobodzinski | cf26e07 | 2015-04-16 11:44:05 -0500 | [diff] [blame] | 260 | VkQueue queue = m_device->graphics_queues()[0]->obj(); |
| 261 | ASSERT_VK_SUCCESS(vkQueueBindObjectMemory(queue, m_image, 0, VK_NULL_HANDLE, 0)); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 262 | |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 263 | for (uint32_t i = 0 ; i < m_num_mem; i++) { |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 264 | err = vkFreeMemory(m_image_mem[i]); |
| 265 | ASSERT_VK_SUCCESS(err); |
Jon Ashburn | a9ae383 | 2015-01-16 09:37:43 -0700 | [diff] [blame] | 266 | } |
| 267 | |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 268 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 269 | ASSERT_VK_SUCCESS(vkDestroyObject(m_image)); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 270 | } |
| 271 | |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 272 | void VkImageTest::CreateImageView(VkImageViewCreateInfo *pCreateInfo, |
| 273 | VkImageView *pView) |
Courtney Goeltzenleuchter | 263e7f5 | 2014-08-14 17:41:57 -0600 | [diff] [blame] | 274 | { |
| 275 | pCreateInfo->image = this->m_image; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 276 | ASSERT_VK_SUCCESS(vkCreateImageView(device(), pCreateInfo, pView)); |
Courtney Goeltzenleuchter | 263e7f5 | 2014-08-14 17:41:57 -0600 | [diff] [blame] | 277 | } |
| 278 | |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 279 | void VkImageTest::DestroyImageView(VkImageView imageView) |
Courtney Goeltzenleuchter | 263e7f5 | 2014-08-14 17:41:57 -0600 | [diff] [blame] | 280 | { |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 281 | ASSERT_VK_SUCCESS(vkDestroyObject(imageView)); |
Courtney Goeltzenleuchter | 263e7f5 | 2014-08-14 17:41:57 -0600 | [diff] [blame] | 282 | } |
| 283 | |
Tony Barbour | 0199918 | 2015-04-09 12:58:51 -0600 | [diff] [blame] | 284 | TEST_F(VkImageTest, CreateImageViewTest) { |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 285 | VkFormat fmt; |
| 286 | VkImageView imageView; |
Courtney Goeltzenleuchter | 263e7f5 | 2014-08-14 17:41:57 -0600 | [diff] [blame] | 287 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 288 | fmt = VK_FMT_R8G8B8A8_UINT; |
Courtney Goeltzenleuchter | 263e7f5 | 2014-08-14 17:41:57 -0600 | [diff] [blame] | 289 | |
| 290 | CreateImage(512, 256); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 291 | |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 292 | // typedef struct VkImageViewCreateInfo_ |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 293 | // { |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 294 | // VkStructureType sType; // Must be VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 295 | // const void* pNext; // Pointer to next structure |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 296 | // VkImage image; |
| 297 | // VkImageViewType viewType; |
| 298 | // VkFormat format; |
| 299 | // VkChannelMapping channels; |
| 300 | // VkImageSubresourceRange subresourceRange; |
Mark Lobodzinski | e2d07a5 | 2015-01-29 08:55:56 -0600 | [diff] [blame] | 301 | // float minLod; |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 302 | // } VkImageViewCreateInfo; |
| 303 | VkImageViewCreateInfo viewInfo = {}; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 304 | viewInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO; |
| 305 | viewInfo.viewType = VK_IMAGE_VIEW_2D; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 306 | viewInfo.format = fmt; |
| 307 | |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 308 | viewInfo.channels.r = VK_CHANNEL_SWIZZLE_R; |
| 309 | viewInfo.channels.g = VK_CHANNEL_SWIZZLE_G; |
| 310 | viewInfo.channels.b = VK_CHANNEL_SWIZZLE_B; |
| 311 | viewInfo.channels.a = VK_CHANNEL_SWIZZLE_A; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 312 | |
| 313 | viewInfo.subresourceRange.baseArraySlice = 0; |
| 314 | viewInfo.subresourceRange.arraySize = 1; |
| 315 | viewInfo.subresourceRange.baseMipLevel = 0; |
| 316 | viewInfo.subresourceRange.mipLevels = 1; |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 317 | viewInfo.subresourceRange.aspect = VK_IMAGE_ASPECT_COLOR; |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 318 | |
Courtney Goeltzenleuchter | 382489d | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 319 | // VkResult VKAPI vkCreateImageView( |
| 320 | // VkDevice device, |
| 321 | // const VkImageViewCreateInfo* pCreateInfo, |
| 322 | // VkImageView* pView); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 323 | |
Courtney Goeltzenleuchter | 263e7f5 | 2014-08-14 17:41:57 -0600 | [diff] [blame] | 324 | CreateImageView(&viewInfo, &imageView); |
| 325 | |
| 326 | DestroyImageView(imageView); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | int main(int argc, char **argv) { |
| 330 | ::testing::InitGoogleTest(&argc, argv); |
Courtney Goeltzenleuchter | 9cc421e | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 331 | vk_testing::set_error_callback(test_error_callback); |
Courtney Goeltzenleuchter | 62928d1 | 2014-08-13 17:53:57 -0600 | [diff] [blame] | 332 | return RUN_ALL_TESTS(); |
| 333 | } |