blob: 4ec26768247007b4c487ce7d0afcc3d2dbeddbf6 [file] [log] [blame]
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -06001// 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 Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060031// VK tests
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060032//
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 Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060054// Verify VK driver initialization
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060055
56#include <stdlib.h>
57#include <stdio.h>
58#include <stdbool.h>
59#include <string.h>
60
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060061#include <vulkan.h>
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060062#include "gtest-1.7.0/include/gtest/gtest.h"
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060063#include "vktestbinding.h"
Chia-I Wufe84fe12014-12-29 15:39:23 +080064#include "test_common.h"
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060065
Jon Ashburn83a64252015-04-15 11:31:12 -060066#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
67
Tony Barbour6918cd52015-04-09 12:58:51 -060068class VkImageTest : public ::testing::Test {
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060069public:
Mark Lobodzinski17caf572015-01-29 08:55:56 -060070 void CreateImage(uint32_t w, uint32_t h);
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -060071 void DestroyImage();
72
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060073 void CreateImageView(VkImageViewCreateInfo* pCreateInfo,
74 VkImageView* pView);
75 void DestroyImageView(VkImageView imageView);
76 VkDevice device() {return m_device->obj();}
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060077
78protected:
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060079 vk_testing::Device *m_device;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060080 VkApplicationInfo app_info;
Tony Barbourd1c35722015-04-16 15:59:00 -060081 VkPhysicalDevice objs[16];
Mark Lobodzinski17caf572015-01-29 08:55:56 -060082 uint32_t gpu_count;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060083 VkInstance inst;
84 VkImage m_image;
Mark Lobodzinski23065352015-05-29 09:32:35 -050085 VkDeviceMemory m_image_mem;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060086
87 virtual void SetUp() {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060088 VkResult err;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060089
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060090 this->app_info.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060091 this->app_info.pNext = NULL;
Chia-I Wuf1a5a742014-12-27 15:16:07 +080092 this->app_info.pAppName = "base";
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060093 this->app_info.appVersion = 1;
Chia-I Wuf1a5a742014-12-27 15:16:07 +080094 this->app_info.pEngineName = "unittest";
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060095 this->app_info.engineVersion = 1;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060096 this->app_info.apiVersion = VK_API_VERSION;
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -060097 VkInstanceCreateInfo inst_info = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060098 inst_info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
Jon Ashburnb317fad2015-04-04 14:52:07 -060099 inst_info.pNext = NULL;
100 inst_info.pAppInfo = &app_info;
101 inst_info.pAllocCb = NULL;
102 inst_info.extensionCount = 0;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600103 inst_info.pEnabledExtensions = NULL;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600104 err = vkCreateInstance(&inst_info, &this->inst);
105 ASSERT_VK_SUCCESS(err);
Jon Ashburn83a64252015-04-15 11:31:12 -0600106 err = vkEnumeratePhysicalDevices(this->inst, &this->gpu_count, NULL);
107 ASSERT_VK_SUCCESS(err);
108 ASSERT_LE(this->gpu_count, ARRAY_SIZE(objs)) << "Too many GPUs";
109 err = vkEnumeratePhysicalDevices(this->inst, &this->gpu_count, objs);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600110 ASSERT_VK_SUCCESS(err);
Jon Ashburnbf843b22014-11-26 11:06:49 -0700111 ASSERT_GE(this->gpu_count, 1) << "No GPU available";
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600112
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600113 this->m_device = new vk_testing::Device(objs[0]);
Chia-I Wufe84fe12014-12-29 15:39:23 +0800114 this->m_device->init();
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600115 }
116
117 virtual void TearDown() {
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600118 vkDestroyInstance(this->inst);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600119 }
120};
121
122
Tony Barbour6918cd52015-04-09 12:58:51 -0600123void VkImageTest::CreateImage(uint32_t w, uint32_t h)
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600124{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600125 VkResult err;
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600126 uint32_t mipCount;
127 size_t size;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600128 VkFormat fmt;
129 VkFormatProperties image_fmt;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600130
131 mipCount = 0;
132
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600133 uint32_t _w = w;
134 uint32_t _h = h;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600135 while( ( _w > 0 ) || ( _h > 0 ) )
136 {
137 _w >>= 1;
138 _h >>= 1;
139 mipCount++;
140 }
141
Tony Barbourd1c35722015-04-16 15:59:00 -0600142 fmt = VK_FORMAT_R8G8B8A8_UINT;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600143 // TODO: Pick known good format rather than just expect common format
144 /*
145 * XXX: What should happen if given NULL HANDLE for the pData argument?
Tony Barbourd1c35722015-04-16 15:59:00 -0600146 * We're not requesting VK_OBJECT_INFO_TYPE_MEMORY_REQUIREMENTS so there is
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600147 * an expectation that pData is a valid pointer.
148 * However, why include a returned size value? That implies that the
149 * amount of data may vary and that doesn't work well for using a
150 * fixed structure.
151 */
Jon Ashburne494a1a2014-09-25 14:36:58 -0600152 size = sizeof(image_fmt);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600153 err = vkGetFormatInfo(this->device(), fmt,
Tony Barbourd1c35722015-04-16 15:59:00 -0600154 VK_FORMAT_INFO_TYPE_PROPERTIES,
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600155 &size, &image_fmt);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600156 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600157
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600158 // typedef struct VkImageCreateInfo_
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600159 // {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600160 // VkStructureType sType; // Must be VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600161 // const void* pNext; // Pointer to next structure.
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600162 // VkImageType imageType;
163 // VkFormat format;
164 // VkExtent3D extent;
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600165 // uint32_t mipLevels;
166 // uint32_t arraySize;
167 // uint32_t samples;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600168 // VkImageTiling tiling;
169 // VkFlags usage; // VkImageUsageFlags
170 // VkFlags flags; // VkImageCreateFlags
171 // } VkImageCreateInfo;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600172
173
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600174 VkImageCreateInfo imageCreateInfo = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600175 imageCreateInfo.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO;
Tony Barbourd1c35722015-04-16 15:59:00 -0600176 imageCreateInfo.imageType = VK_IMAGE_TYPE_2D;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600177 imageCreateInfo.format = fmt;
178 imageCreateInfo.arraySize = 1;
179 imageCreateInfo.extent.width = w;
180 imageCreateInfo.extent.height = h;
181 imageCreateInfo.extent.depth = 1;
182 imageCreateInfo.mipLevels = mipCount;
183 imageCreateInfo.samples = 1;
Tony Barbourd1c35722015-04-16 15:59:00 -0600184 if (image_fmt.linearTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) {
185 imageCreateInfo.tiling = VK_IMAGE_TILING_LINEAR;
Tony Barboura8bea1d2015-03-31 08:59:00 -0600186 }
Tony Barbourd1c35722015-04-16 15:59:00 -0600187 else if (image_fmt.optimalTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) {
188 imageCreateInfo.tiling = VK_IMAGE_TILING_OPTIMAL;
Tony Barboura8bea1d2015-03-31 08:59:00 -0600189 }
190 else {
191 ASSERT_TRUE(false) << "Cannot find supported tiling format - Exiting";
192 }
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600193
194 // Image usage flags
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600195 // VK_IMAGE_USAGE_DEPTH_STENCIL_BIT = 0x00000008,
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600196 //typedef enum VkImageUsageFlags_
197 //{
198 // VK_IMAGE_USAGE_GENERAL = 0x00000000, // no special usage
199 // VK_IMAGE_USAGE_TRANSFER_SOURCE_BIT = 0x00000001, // Can be used as a source of transfer operations
200 // VK_IMAGE_USAGE_TRANSFER_DESTINATION_BIT = 0x00000002, // Can be used as a destination of transfer operations
201 // VK_IMAGE_USAGE_SAMPLED_BIT = 0x00000004, // Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)
202 // VK_IMAGE_USAGE_STORAGE_BIT = 0x00000008, // Can be used as storage image (STORAGE_IMAGE descriptor type)
203 // VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT = 0x00000010, // Can be used as framebuffer color attachment
204 // VK_IMAGE_USAGE_DEPTH_STENCIL_BIT = 0x00000020, // Can be used as framebuffer depth/stencil attachment
205 // VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT = 0x00000040, // Image data not needed outside of rendering
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600206 // } VkImageUsageFlags;
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600207 imageCreateInfo.usage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600208
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600209 // VkResult VKAPI vkCreateImage(
210 // VkDevice device,
211 // const VkImageCreateInfo* pCreateInfo,
212 // VkImage* pImage);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600213 err = vkCreateImage(device(), &imageCreateInfo, &m_image);
214 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600215
Mark Lobodzinski23065352015-05-29 09:32:35 -0500216 VkMemoryRequirements mem_req;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600217 size_t mem_reqs_size = sizeof(VkMemoryRequirements);
Tony Barbourbdf0a312015-04-01 17:10:07 -0600218
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600219 VkMemoryAllocInfo mem_info = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600220 mem_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOC_INFO;
Mark Lobodzinskie39f6952015-04-16 08:52:00 -0500221 mem_info.pNext = NULL;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600222
Mike Stroyanb050c682015-04-17 12:36:38 -0600223 err = vkGetObjectInfo(device(), VK_OBJECT_TYPE_IMAGE, m_image,
Tony Barbourd1c35722015-04-16 15:59:00 -0600224 VK_OBJECT_INFO_TYPE_MEMORY_REQUIREMENTS,
Mark Lobodzinski23065352015-05-29 09:32:35 -0500225 &mem_reqs_size, &mem_req);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600226 ASSERT_VK_SUCCESS(err);
Jon Ashburn7e781952015-01-16 09:37:43 -0700227
Mark Lobodzinski23065352015-05-29 09:32:35 -0500228 ASSERT_NE(0, mem_req.size) << "vkGetObjectInfo (Image): Failed - expect images to require memory";
229 mem_info.allocationSize = mem_req.size;
230 mem_info.memProps = VK_MEMORY_PROPERTY_SHAREABLE_BIT;
231 mem_info.memPriority = VK_MEMORY_PRIORITY_NORMAL;
Jon Ashburn7e781952015-01-16 09:37:43 -0700232
Mark Lobodzinski23065352015-05-29 09:32:35 -0500233 /* allocate memory */
234 err = vkAllocMemory(device(), &mem_info, &m_image_mem);
235 ASSERT_VK_SUCCESS(err);
Jon Ashburn7e781952015-01-16 09:37:43 -0700236
Mark Lobodzinski23065352015-05-29 09:32:35 -0500237 /* bind memory */
238 err = vkBindObjectMemory(device(), VK_OBJECT_TYPE_IMAGE, m_image, m_image_mem, 0);
239 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600240}
241
Tony Barbour6918cd52015-04-09 12:58:51 -0600242void VkImageTest::DestroyImage()
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600243{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600244 VkResult err;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600245 // All done with image memory, clean up
Mark Lobodzinski23065352015-05-29 09:32:35 -0500246 err = vkFreeMemory(device(), m_image_mem);
247 ASSERT_VK_SUCCESS(err);
Jon Ashburn7e781952015-01-16 09:37:43 -0700248
Mike Stroyanb050c682015-04-17 12:36:38 -0600249 ASSERT_VK_SUCCESS(vkDestroyObject(device(), VK_OBJECT_TYPE_IMAGE, m_image));
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600250}
251
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600252void VkImageTest::CreateImageView(VkImageViewCreateInfo *pCreateInfo,
253 VkImageView *pView)
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600254{
255 pCreateInfo->image = this->m_image;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600256 ASSERT_VK_SUCCESS(vkCreateImageView(device(), pCreateInfo, pView));
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600257}
258
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600259void VkImageTest::DestroyImageView(VkImageView imageView)
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600260{
Mark Lobodzinskic93194c2015-04-28 18:05:35 -0500261 ASSERT_VK_SUCCESS(vkDestroyObject(device(), VK_OBJECT_TYPE_IMAGE_VIEW, imageView));
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600262}
263
Tony Barbour6918cd52015-04-09 12:58:51 -0600264TEST_F(VkImageTest, CreateImageViewTest) {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600265 VkFormat fmt;
266 VkImageView imageView;
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600267
Tony Barbourd1c35722015-04-16 15:59:00 -0600268 fmt = VK_FORMAT_R8G8B8A8_UINT;
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600269
270 CreateImage(512, 256);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600271
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600272 // typedef struct VkImageViewCreateInfo_
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600273 // {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600274 // VkStructureType sType; // Must be VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600275 // const void* pNext; // Pointer to next structure
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600276 // VkImage image;
277 // VkImageViewType viewType;
278 // VkFormat format;
279 // VkChannelMapping channels;
280 // VkImageSubresourceRange subresourceRange;
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600281 // float minLod;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600282 // } VkImageViewCreateInfo;
283 VkImageViewCreateInfo viewInfo = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600284 viewInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
Tony Barbourd1c35722015-04-16 15:59:00 -0600285 viewInfo.viewType = VK_IMAGE_VIEW_TYPE_2D;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600286 viewInfo.format = fmt;
287
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600288 viewInfo.channels.r = VK_CHANNEL_SWIZZLE_R;
289 viewInfo.channels.g = VK_CHANNEL_SWIZZLE_G;
290 viewInfo.channels.b = VK_CHANNEL_SWIZZLE_B;
291 viewInfo.channels.a = VK_CHANNEL_SWIZZLE_A;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600292
293 viewInfo.subresourceRange.baseArraySlice = 0;
294 viewInfo.subresourceRange.arraySize = 1;
295 viewInfo.subresourceRange.baseMipLevel = 0;
296 viewInfo.subresourceRange.mipLevels = 1;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600297 viewInfo.subresourceRange.aspect = VK_IMAGE_ASPECT_COLOR;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600298
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600299 // VkResult VKAPI vkCreateImageView(
300 // VkDevice device,
301 // const VkImageViewCreateInfo* pCreateInfo,
302 // VkImageView* pView);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600303
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600304 CreateImageView(&viewInfo, &imageView);
305
306 DestroyImageView(imageView);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600307}
308
309int main(int argc, char **argv) {
310 ::testing::InitGoogleTest(&argc, argv);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600311 vk_testing::set_error_callback(test_error_callback);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600312 return RUN_ALL_TESTS();
313}