blob: 709595b506359559c5af767678c1a4a5d6ec8a2a [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 Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060031//
Courtney Goeltzenleuchterfcbe16f2015-10-29 13:50:34 -060032// Copyright (C) 2015 Valve Corporation
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060033//
34// Permission is hereby granted, free of charge, to any person obtaining a
35// copy of this software and associated documentation files (the "Software"),
36// to deal in the Software without restriction, including without limitation
37// the rights to use, copy, modify, merge, publish, distribute, sublicense,
38// and/or sell copies of the Software, and to permit persons to whom the
39// Software is furnished to do so, subject to the following conditions:
40//
41// The above copyright notice and this permission notice shall be included
42// in all copies or substantial portions of the Software.
43//
44// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
47// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
49// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
50// DEALINGS IN THE SOFTWARE.
Courtney Goeltzenleuchter05559522015-10-30 11:14:30 -060051//
52// Author: Courtney Goeltzenleuchter <courtney@LunarG.com>
53// Author: Jon Ashburn <jon@lunarg.com>
54// Author: Tony Barbour <tony@LunarG.com>
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060055
56
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060057// Verify VK driver initialization
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060058
59#include <stdlib.h>
60#include <stdio.h>
61#include <stdbool.h>
62#include <string.h>
63
David Pinedo9316d3b2015-11-06 12:54:48 -070064#include <vulkan/vulkan.h>
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060065#include "vktestbinding.h"
Chia-I Wufe84fe12014-12-29 15:39:23 +080066#include "test_common.h"
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060067
Jon Ashburn83a64252015-04-15 11:31:12 -060068#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
69
Tony Barbour6918cd52015-04-09 12:58:51 -060070class VkImageTest : public ::testing::Test {
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060071public:
Mark Lobodzinski17caf572015-01-29 08:55:56 -060072 void CreateImage(uint32_t w, uint32_t h);
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -060073 void DestroyImage();
74
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060075 void CreateImageView(VkImageViewCreateInfo* pCreateInfo,
76 VkImageView* pView);
77 void DestroyImageView(VkImageView imageView);
Chia-I Wuf368b602015-07-03 10:41:20 +080078 VkDevice device() {return m_device->handle();}
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060079
80protected:
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060081 vk_testing::Device *m_device;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060082 VkApplicationInfo app_info;
Tony Barbourd1c35722015-04-16 15:59:00 -060083 VkPhysicalDevice objs[16];
Mark Lobodzinski17caf572015-01-29 08:55:56 -060084 uint32_t gpu_count;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060085 VkInstance inst;
86 VkImage m_image;
Mark Lobodzinski23065352015-05-29 09:32:35 -050087 VkDeviceMemory m_image_mem;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060088
89 virtual void SetUp() {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060090 VkResult err;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060091
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060092 this->app_info.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060093 this->app_info.pNext = NULL;
Chia-I Wu3432a0c2015-10-27 18:04:07 +080094 this->app_info.pApplicationName = "base";
95 this->app_info.applicationVersion = 1;
Chia-I Wuf1a5a742014-12-27 15:16:07 +080096 this->app_info.pEngineName = "unittest";
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -060097 this->app_info.engineVersion = 1;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060098 this->app_info.apiVersion = VK_API_VERSION;
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -060099 VkInstanceCreateInfo inst_info = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600100 inst_info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
Jon Ashburnb317fad2015-04-04 14:52:07 -0600101 inst_info.pNext = NULL;
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800102 inst_info.pApplicationInfo = &app_info;
Chia-I Wud50a7d72015-10-26 20:48:51 +0800103 inst_info.enabledLayerNameCount = 0;
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600104 inst_info.ppEnabledLayerNames = NULL;
Chia-I Wud50a7d72015-10-26 20:48:51 +0800105 inst_info.enabledExtensionNameCount = 0;
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600106 inst_info.ppEnabledExtensionNames = NULL;
Chia-I Wuf7458c52015-10-26 21:10:41 +0800107 err = vkCreateInstance(&inst_info, NULL, &this->inst);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600108 ASSERT_VK_SUCCESS(err);
Jon Ashburn83a64252015-04-15 11:31:12 -0600109 err = vkEnumeratePhysicalDevices(this->inst, &this->gpu_count, NULL);
110 ASSERT_VK_SUCCESS(err);
111 ASSERT_LE(this->gpu_count, ARRAY_SIZE(objs)) << "Too many GPUs";
112 err = vkEnumeratePhysicalDevices(this->inst, &this->gpu_count, objs);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600113 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchter58f3eff2015-10-07 13:28:58 -0600114 ASSERT_GE(this->gpu_count, (uint32_t) 1) << "No GPU available";
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600115
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600116 this->m_device = new vk_testing::Device(objs[0]);
Chia-I Wufe84fe12014-12-29 15:39:23 +0800117 this->m_device->init();
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600118 }
119
120 virtual void TearDown() {
Tony Barboure30ca4c2015-07-21 09:10:44 -0600121 delete this->m_device;
Chia-I Wuf7458c52015-10-26 21:10:41 +0800122 vkDestroyInstance(this->inst, NULL);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600123 }
124};
125
126
Tony Barbour6918cd52015-04-09 12:58:51 -0600127void VkImageTest::CreateImage(uint32_t w, uint32_t h)
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600128{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600129 VkResult err;
Courtney Goeltzenleuchter1d2f0dd2015-10-22 11:03:31 -0600130 bool pass;
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600131 uint32_t mipCount;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600132 VkFormat fmt;
133 VkFormatProperties image_fmt;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600134
135 mipCount = 0;
136
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600137 uint32_t _w = w;
138 uint32_t _h = h;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600139 while( ( _w > 0 ) || ( _h > 0 ) )
140 {
141 _w >>= 1;
142 _h >>= 1;
143 mipCount++;
144 }
145
Tony Barbourd1c35722015-04-16 15:59:00 -0600146 fmt = VK_FORMAT_R8G8B8A8_UINT;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600147 // TODO: Pick known good format rather than just expect common format
148 /*
149 * XXX: What should happen if given NULL HANDLE for the pData argument?
Tony Barbourd1c35722015-04-16 15:59:00 -0600150 * We're not requesting VK_OBJECT_INFO_TYPE_MEMORY_REQUIREMENTS so there is
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600151 * an expectation that pData is a valid pointer.
152 * However, why include a returned size value? That implies that the
153 * amount of data may vary and that doesn't work well for using a
154 * fixed structure.
155 */
Courtney Goeltzenleuchter06d89472015-10-20 16:40:38 -0600156 vkGetPhysicalDeviceFormatProperties(this->objs[0], fmt, &image_fmt);
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;
Chia-I Wu5c17c962015-10-31 00:31:16 +0800167 // VkSampleCountFlagBits 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;
Courtney Goeltzenleuchter5d2aed42015-10-21 17:57:31 -0600178 imageCreateInfo.arrayLayers = 1;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600179 imageCreateInfo.extent.width = w;
180 imageCreateInfo.extent.height = h;
181 imageCreateInfo.extent.depth = 1;
182 imageCreateInfo.mipLevels = mipCount;
Chia-I Wu5c17c962015-10-31 00:31:16 +0800183 imageCreateInfo.samples = VK_SAMPLE_COUNT_1_BIT;
Tony Barbour9f0d6b22015-10-05 12:43:30 -0600184 if ((image_fmt.linearTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) &&
185 (image_fmt.linearTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT))
186 {
Tony Barbourd1c35722015-04-16 15:59:00 -0600187 imageCreateInfo.tiling = VK_IMAGE_TILING_LINEAR;
Tony Barboura8bea1d2015-03-31 08:59:00 -0600188 }
Tony Barbour9f0d6b22015-10-05 12:43:30 -0600189 else if ((image_fmt.optimalTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) &&
190 (image_fmt.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT))
191 {
Tony Barbourd1c35722015-04-16 15:59:00 -0600192 imageCreateInfo.tiling = VK_IMAGE_TILING_OPTIMAL;
Tony Barboura8bea1d2015-03-31 08:59:00 -0600193 }
194 else {
195 ASSERT_TRUE(false) << "Cannot find supported tiling format - Exiting";
196 }
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600197
198 // Image usage flags
Courtney Goeltzenleuchter660f0ca2015-09-10 14:14:11 -0600199 // VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT = 0x00000008,
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600200 //typedef enum VkImageUsageFlags_
201 //{
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800202 // VK_IMAGE_USAGE_TRANSFER_SRC_BIT = 0x00000001, // Can be used as a source of transfer operations
203 // VK_IMAGE_USAGE_TRANSFER_DST_BIT = 0x00000002, // Can be used as a destination of transfer operations
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600204 // VK_IMAGE_USAGE_SAMPLED_BIT = 0x00000004, // Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)
205 // VK_IMAGE_USAGE_STORAGE_BIT = 0x00000008, // Can be used as storage image (STORAGE_IMAGE descriptor type)
206 // VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT = 0x00000010, // Can be used as framebuffer color attachment
Courtney Goeltzenleuchter660f0ca2015-09-10 14:14:11 -0600207 // VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT = 0x00000020, // Can be used as framebuffer depth/stencil attachment
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600208 // VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT = 0x00000040, // Image data not needed outside of rendering
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600209 // } VkImageUsageFlags;
Cody Northropbb6fdb32015-06-17 08:28:19 -0600210 imageCreateInfo.usage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT |
211 VK_IMAGE_USAGE_SAMPLED_BIT;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600212
Chia-I Wu9ab61502015-11-06 06:42:02 +0800213 // VKAPI_ATTR VkResult VKAPI_CALL vkCreateImage(
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600214 // VkDevice device,
215 // const VkImageCreateInfo* pCreateInfo,
216 // VkImage* pImage);
Chia-I Wuf7458c52015-10-26 21:10:41 +0800217 err = vkCreateImage(device(), &imageCreateInfo, NULL, &m_image);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600218 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600219
Mark Lobodzinski23065352015-05-29 09:32:35 -0500220 VkMemoryRequirements mem_req;
Tony Barbourbdf0a312015-04-01 17:10:07 -0600221
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800222 VkMemoryAllocateInfo mem_info = {};
Chia-I Wu00ce5402015-11-10 16:21:09 +0800223 mem_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
Mark Lobodzinskie39f6952015-04-16 08:52:00 -0500224 mem_info.pNext = NULL;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600225
Courtney Goeltzenleuchter06d89472015-10-20 16:40:38 -0600226 vkGetImageMemoryRequirements(device(), m_image, &mem_req);
Jon Ashburn7e781952015-01-16 09:37:43 -0700227
Tony Barbour59a47322015-06-24 16:06:58 -0600228 ASSERT_NE(0, mem_req.size) << "vkGetObjectMemoryRequirements (Image): Failed - expect images to require memory";
Mark Lobodzinski23065352015-05-29 09:32:35 -0500229 mem_info.allocationSize = mem_req.size;
Mark Lobodzinskib3fbcd92015-07-02 16:49:40 -0600230 mem_info.memoryTypeIndex = 0;
231
Courtney Goeltzenleuchter1d2f0dd2015-10-22 11:03:31 -0600232 pass = m_device->phy().set_memory_type(mem_req.memoryTypeBits, &mem_info, 0);
233 ASSERT_TRUE(pass);
Jon Ashburn7e781952015-01-16 09:37:43 -0700234
Mark Lobodzinski23065352015-05-29 09:32:35 -0500235 /* allocate memory */
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800236 err = vkAllocateMemory(device(), &mem_info, NULL, &m_image_mem);
Mark Lobodzinski23065352015-05-29 09:32:35 -0500237 ASSERT_VK_SUCCESS(err);
Jon Ashburn7e781952015-01-16 09:37:43 -0700238
Mark Lobodzinski23065352015-05-29 09:32:35 -0500239 /* bind memory */
Tony Barbour67e99152015-07-10 14:10:27 -0600240 err = vkBindImageMemory(device(), m_image, m_image_mem, 0);
Mark Lobodzinski23065352015-05-29 09:32:35 -0500241 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600242}
243
Tony Barbour6918cd52015-04-09 12:58:51 -0600244void VkImageTest::DestroyImage()
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600245{
Mark Lobodzinski4dacaa72015-09-10 11:43:00 -0600246 // All done with image object and memory, clean up
Chia-I Wuf7458c52015-10-26 21:10:41 +0800247 vkDestroyImage(device(), m_image, NULL);
248 vkFreeMemory(device(), m_image_mem, NULL);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600249}
250
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600251void VkImageTest::CreateImageView(VkImageViewCreateInfo *pCreateInfo,
252 VkImageView *pView)
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600253{
Courtney Goeltzenleuchter65fabb42015-09-24 17:47:18 -0600254 VkResult err;
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600255 pCreateInfo->image = this->m_image;
Chia-I Wuf7458c52015-10-26 21:10:41 +0800256 err = vkCreateImageView(device(), pCreateInfo, NULL, pView);
Courtney Goeltzenleuchter65fabb42015-09-24 17:47:18 -0600257 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600258}
259
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600260void VkImageTest::DestroyImageView(VkImageView imageView)
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600261{
Chia-I Wuf7458c52015-10-26 21:10:41 +0800262 vkDestroyImageView(device(), imageView, NULL);
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600263}
264
Tony Barbour6918cd52015-04-09 12:58:51 -0600265TEST_F(VkImageTest, CreateImageViewTest) {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600266 VkFormat fmt;
267 VkImageView imageView;
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600268
Tony Barbourd1c35722015-04-16 15:59:00 -0600269 fmt = VK_FORMAT_R8G8B8A8_UINT;
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600270
271 CreateImage(512, 256);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600272
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600273 // typedef struct VkImageViewCreateInfo_
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600274 // {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600275 // VkStructureType sType; // Must be VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600276 // const void* pNext; // Pointer to next structure
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600277 // VkImage image;
278 // VkImageViewType viewType;
279 // VkFormat format;
Chia-I Wu1b99bb22015-10-27 19:25:11 +0800280 // VkComponentMapping channels;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600281 // VkImageSubresourceRange subresourceRange;
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600282 // float minLod;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600283 // } VkImageViewCreateInfo;
284 VkImageViewCreateInfo viewInfo = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600285 viewInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
Tony Barbourd1c35722015-04-16 15:59:00 -0600286 viewInfo.viewType = VK_IMAGE_VIEW_TYPE_2D;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600287 viewInfo.format = fmt;
288
Chia-I Wuab83a0e2015-10-27 19:00:15 +0800289 viewInfo.components.r = VK_COMPONENT_SWIZZLE_R;
290 viewInfo.components.g = VK_COMPONENT_SWIZZLE_G;
291 viewInfo.components.b = VK_COMPONENT_SWIZZLE_B;
292 viewInfo.components.a = VK_COMPONENT_SWIZZLE_A;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600293
Courtney Goeltzenleuchter4a261892015-09-10 16:38:41 -0600294 viewInfo.subresourceRange.baseArrayLayer = 0;
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800295 viewInfo.subresourceRange.layerCount = 1;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600296 viewInfo.subresourceRange.baseMipLevel = 0;
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800297 viewInfo.subresourceRange.levelCount = 1;
Courtney Goeltzenleuchterba724512015-09-10 17:58:54 -0600298 viewInfo.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600299
Chia-I Wu9ab61502015-11-06 06:42:02 +0800300 // VKAPI_ATTR VkResult VKAPI_CALL vkCreateImageView(
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600301 // VkDevice device,
302 // const VkImageViewCreateInfo* pCreateInfo,
303 // VkImageView* pView);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600304
Courtney Goeltzenleuchter80ea59a2014-08-14 17:41:57 -0600305 CreateImageView(&viewInfo, &imageView);
306
307 DestroyImageView(imageView);
Tony Barboure30ca4c2015-07-21 09:10:44 -0600308 DestroyImage();
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600309}
310
311int main(int argc, char **argv) {
312 ::testing::InitGoogleTest(&argc, argv);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600313 vk_testing::set_error_callback(test_error_callback);
Courtney Goeltzenleuchter3470bdf2014-08-13 17:53:57 -0600314 return RUN_ALL_TESTS();
315}