blob: c225ea4cd1648b3e9d98cc6aefd1aaa9d1b29743 [file] [log] [blame]
Mark Lobodzinski6eda00a2016-02-02 15:55:36 -07001/* Copyright (c) 2015-2016 The Khronos Group Inc.
2 * Copyright (c) 2015-2016 Valve Corporation
3 * Copyright (c) 2015-2016 LunarG, Inc.
Tobin Ehlisad8c4462015-09-21 15:20:28 -06004 *
Jon Ashburn3ebf1252016-04-19 11:30:31 -06005 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
Tobin Ehlisad8c4462015-09-21 15:20:28 -06008 *
Jon Ashburn3ebf1252016-04-19 11:30:31 -06009 * http://www.apache.org/licenses/LICENSE-2.0
Tobin Ehlisad8c4462015-09-21 15:20:28 -060010 *
Jon Ashburn3ebf1252016-04-19 11:30:31 -060011 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
Courtney Goeltzenleuchter05559522015-10-30 11:14:30 -060016 *
17 * Author: Mark Lobodzinski <mark@lunarg.com>
18 * Author: Mike Stroyan <mike@LunarG.com>
19 * Author: Tobin Ehlis <tobin@lunarg.com>
Tobin Ehlisad8c4462015-09-21 15:20:28 -060020 */
Mark Lobodzinski6eda00a2016-02-02 15:55:36 -070021
Tobin Ehlisad8c4462015-09-21 15:20:28 -060022#ifndef IMAGE_H
23#define IMAGE_H
David Pinedo9316d3b2015-11-06 12:54:48 -070024#include "vulkan/vulkan.h"
Tobin Ehlisad8c4462015-09-21 15:20:28 -060025#include "vk_layer_config.h"
26#include "vk_layer_logging.h"
27
Mike Stroyana3082432015-09-25 13:39:21 -060028// Image ERROR codes
Mark Lobodzinskid27a1072016-05-19 17:10:01 -060029enum IMAGE_ERROR {
Mark Lobodzinski1ed594e2016-02-03 09:57:14 -070030 IMAGE_NONE, // Used for INFO & other non-error messages
31 IMAGE_FORMAT_UNSUPPORTED, // Request to create Image or RenderPass with a format that is not supported
32 IMAGE_RENDERPASS_INVALID_ATTACHMENT, // Invalid image layouts and/or load/storeOps for an attachment when creating RenderPass
Mike Weiblencce7ec72016-10-17 19:33:05 -060033 IMAGE_RENDERPASS_INVALID_DS_ATTACHMENT, // If no depth/stencil attachment for a RenderPass, verify that subpass DS attachment
34 // is set to UNUSED
Mark Lobodzinski1ed594e2016-02-03 09:57:14 -070035 IMAGE_INVALID_IMAGE_ASPECT, // Image aspect mask bits are invalid for this API call
36 IMAGE_MISMATCHED_IMAGE_ASPECT, // Image aspect masks for source and dest images do not match
37 IMAGE_VIEW_CREATE_ERROR, // Error occurred trying to create Image View
38 IMAGE_MISMATCHED_IMAGE_TYPE, // Image types for source and dest images do not match
39 IMAGE_MISMATCHED_IMAGE_FORMAT, // Image formats for source and dest images do not match
40 IMAGE_INVALID_RESOLVE_SAMPLES, // Image resolve source samples less than two or dest samples greater than one
41 IMAGE_INVALID_FORMAT, // Operation specifies an invalid format, or there is a format mismatch
42 IMAGE_INVALID_FILTER, // Operation specifies an invalid filter setting
43 IMAGE_INVALID_IMAGE_RESOURCE, // Image resource/subresource called with invalid setting
44 IMAGE_INVALID_FORMAT_LIMITS_VIOLATION, // Device limits for this format have been exceeded
Mark Lobodzinskib2ad7022016-03-29 17:10:14 -060045 IMAGE_INVALID_LAYOUT, // Operation specifies an invalid layout
46 IMAGE_INVALID_EXTENTS, // Operation specifies invalid image extents
Tony Barbour26434b92016-06-02 09:43:50 -060047 IMAGE_INVALID_USAGE, // Image was created without necessary usage for operation
Mark Lobodzinskid27a1072016-05-19 17:10:01 -060048};
Tobin Ehlisad8c4462015-09-21 15:20:28 -060049
Mark Lobodzinskid27a1072016-05-19 17:10:01 -060050struct IMAGE_STATE {
Jon Ashburn5484e0c2016-03-08 17:48:44 -070051 uint32_t mipLevels;
52 uint32_t arraySize;
53 VkFormat format;
Chia-I Wu5c17c962015-10-31 00:31:16 +080054 VkSampleCountFlagBits samples;
Jon Ashburn5484e0c2016-03-08 17:48:44 -070055 VkImageType imageType;
56 VkExtent3D extent;
57 VkImageCreateFlags flags;
Tony Barbour26434b92016-06-02 09:43:50 -060058 VkImageUsageFlags usage;
Mark Lobodzinskid27a1072016-05-19 17:10:01 -060059 IMAGE_STATE()
Jon Ashburn5484e0c2016-03-08 17:48:44 -070060 : mipLevels(0), arraySize(0), format(VK_FORMAT_UNDEFINED), samples(VK_SAMPLE_COUNT_1_BIT),
Tony Barbour26434b92016-06-02 09:43:50 -060061 imageType(VK_IMAGE_TYPE_RANGE_SIZE), extent{}, flags(0), usage(0){};
Mark Lobodzinskid27a1072016-05-19 17:10:01 -060062 IMAGE_STATE(const VkImageCreateInfo *pCreateInfo)
Jon Ashburn5484e0c2016-03-08 17:48:44 -070063 : mipLevels(pCreateInfo->mipLevels), arraySize(pCreateInfo->arrayLayers), format(pCreateInfo->format),
Tony Barbour26434b92016-06-02 09:43:50 -060064 samples(pCreateInfo->samples), imageType(pCreateInfo->imageType), extent(pCreateInfo->extent), flags(pCreateInfo->flags),
65 usage(pCreateInfo->usage){};
Mark Lobodzinskid27a1072016-05-19 17:10:01 -060066};
Tobin Ehliscde08892015-09-22 10:11:37 -060067
Tobin Ehlisad8c4462015-09-21 15:20:28 -060068#endif // IMAGE_H