blob: 1392d5194de24f0b990efe17ff3a1d4a29b3cc94 [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
Mike Stroyan43909d82015-09-25 13:39:21 -060030// Image ERROR codes
Tobin Ehlis65380532015-09-21 15:20:28 -060031typedef 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
Mike Stroyan43909d82015-09-25 13:39:21 -060040 IMAGE_MISMATCHED_IMAGE_TYPE, // Image types for source and dest images do not match
41 IMAGE_MISMATCHED_IMAGE_FORMAT, // Image formats for source and dest images do not match
42 IMAGE_INVALID_RESOLVE_SAMPLES, // Image resolve source samples less than two or dest samples greater than one
Mark Lobodzinskib4092de2015-10-23 14:20:31 -060043 IMAGE_INVALID_FORMAT, // Operation specifies an invalid format, or there is a format mismatch
44 IMAGE_INVALID_FILTER, // Operation specifies an invalid filter setting
Tobin Ehlis65380532015-09-21 15:20:28 -060045} IMAGE_ERROR;
46
Tobin Ehlis342b9bf2015-09-22 10:11:37 -060047typedef struct _IMAGE_STATE
48{
Mark Lobodzinskib4092de2015-10-23 14:20:31 -060049 uint32_t mipLevels;
50 uint32_t arraySize;
51 VkFormat format;
52 uint32_t samples;
Mike Stroyan43909d82015-09-25 13:39:21 -060053 VkImageType imageType;
Mark Lobodzinskib4092de2015-10-23 14:20:31 -060054 VkExtent3D extent;
55 _IMAGE_STATE():mipLevels(0), arraySize(0), format(VK_FORMAT_UNDEFINED), samples(0), imageType(VK_IMAGE_TYPE_NUM), extent{0} {};
Mike Stroyan43909d82015-09-25 13:39:21 -060056 _IMAGE_STATE(const VkImageCreateInfo* pCreateInfo):
57 mipLevels(pCreateInfo->mipLevels),
Courtney Goeltzenleuchter2ebc2342015-10-21 17:57:31 -060058 arraySize(pCreateInfo->arrayLayers),
Mike Stroyan43909d82015-09-25 13:39:21 -060059 format(pCreateInfo->format),
60 samples(pCreateInfo->samples),
Mark Lobodzinskib4092de2015-10-23 14:20:31 -060061 imageType(pCreateInfo->imageType),
62 extent(pCreateInfo->extent)
Mike Stroyan43909d82015-09-25 13:39:21 -060063 {};
Tobin Ehlis342b9bf2015-09-22 10:11:37 -060064} IMAGE_STATE;
65
Tobin Ehlis65380532015-09-21 15:20:28 -060066#endif // IMAGE_H