blob: 79c492800153ca19741059c7099573d2a36af9f4 [file] [log] [blame]
Tobin Ehlis65380532015-09-21 15:20:28 -06001/*
2 * Vulkan
3 *
4 * Copyright (C) 2015 LunarG, Inc.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24#ifndef IMAGE_H
25#define IMAGE_H
26#include "vulkan.h"
27#include "vk_layer_config.h"
28#include "vk_layer_logging.h"
29
30// Draw State ERROR codes
31typedef enum _IMAGE_ERROR
32{
33 IMAGE_NONE, // Used for INFO & other non-error messages
34 IMAGE_FORMAT_UNSUPPORTED, // Request to create Image or RenderPass with a format that is not supported
35 IMAGE_RENDERPASS_INVALID_ATTACHMENT, // Invalid image layouts and/or load/storeOps for an attachment when creating RenderPass
36 IMAGE_RENDERPASS_INVALID_DS_ATTACHMENT, // If no depth attachment for a RenderPass, verify that subpass DS attachment is set to UNUSED
Mark Lobodzinski6f3403c2015-10-05 17:16:05 -060037 IMAGE_INVALID_IMAGE_ASPECT, // Image aspect mask bits are invalid for this API call
38 IMAGE_MISMATCHED_IMAGE_ASPECT, // Image aspect masks for source and dest images do not match
Tobin Ehlis65380532015-09-21 15:20:28 -060039 IMAGE_VIEW_CREATE_ERROR, // Error occurred trying to create Image View
40} IMAGE_ERROR;
41
Tobin Ehlis342b9bf2015-09-22 10:11:37 -060042typedef struct _IMAGE_STATE
43{
44 uint32_t mipLevels;
45 uint32_t arraySize;
46 _IMAGE_STATE():mipLevels(0), arraySize(0) {};
47 _IMAGE_STATE(const VkImageCreateInfo* pCreateInfo):mipLevels(pCreateInfo->mipLevels), arraySize(pCreateInfo->arraySize) {};
48} IMAGE_STATE;
49
Tobin Ehlis65380532015-09-21 15:20:28 -060050#endif // IMAGE_H