blob: 6f11c23b91b51fd497b0eb83a49a214c2efd7907 [file] [log] [blame]
Tobin Ehlisc345b8b2015-09-03 09:50:06 -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#include "vk_layer.h"
25#include <vector>
26#include "layer_common.h"
27
28using namespace std;
29
30// Device Limits ERROR codes
31typedef enum _DEV_LIMITS_ERROR
32{
33 DEVLIMITS_NONE, // Used for INFO & other non-error messages
34 DEVLIMITS_INVALID_INSTANCE, // Invalid instance used
35 DEVLIMITS_INVALID_PHYSICAL_DEVICE, // Invalid physical device used
36 DEVLIMITS_MUST_QUERY_COUNT, // Failed to make initial call to an API to query the count
Mark Lobodzinskiddaecf82015-09-22 09:33:21 -060037 DEVLIMITS_MUST_QUERY_PROPERTIES, // Failed to make initial call to an API to query properties
Tobin Ehlisc345b8b2015-09-03 09:50:06 -060038 DEVLIMITS_COUNT_MISMATCH, // App requesting a count value different than actual value
39 DEVLIMITS_INVALID_QUEUE_CREATE_REQUEST, // Invalid queue requested based on queue family properties
Mark Lobodzinskiddaecf82015-09-22 09:33:21 -060040 DEVLIMITS_LIMITS_VIOLATION, // Driver-specified limits/properties were exceeded
Tobin Ehlisc345b8b2015-09-03 09:50:06 -060041} DEV_LIMITS_ERROR;
42
43typedef enum _CALL_STATE
44{
45 UNCALLED, // Function has not been called
46 QUERY_COUNT, // Function called once to query a count
47 QUERY_DETAILS, // Function called w/ a count to query details
48} CALL_STATE;
49
50typedef struct _INSTANCE_STATE
51{
52 // Track the call state and array size for physical devices
53 CALL_STATE vkEnumeratePhysicalDevicesState;
54 uint32_t physicalDevicesCount;
55 _INSTANCE_STATE():vkEnumeratePhysicalDevicesState(UNCALLED), physicalDevicesCount(0) {};
56} INSTANCE_STATE;
57
58typedef struct _PHYSICAL_DEVICE_STATE
59{
60 // Track the call state and array sizes for various query functions
61 CALL_STATE vkGetPhysicalDeviceQueueFamilyPropertiesState;
62 uint32_t queueFamilyPropertiesCount;
63 _PHYSICAL_DEVICE_STATE():vkGetPhysicalDeviceQueueFamilyPropertiesState(UNCALLED), queueFamilyPropertiesCount(0) {};
64} PHYSICAL_DEVICE_STATE;
65