blob: d9636648ab34267184a8021a0ebfefe46568faf4 [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
37 DEVLIMITS_COUNT_MISMATCH, // App requesting a count value different than actual value
38 DEVLIMITS_INVALID_QUEUE_CREATE_REQUEST, // Invalid queue requested based on queue family properties
39} DEV_LIMITS_ERROR;
40
41typedef enum _CALL_STATE
42{
43 UNCALLED, // Function has not been called
44 QUERY_COUNT, // Function called once to query a count
45 QUERY_DETAILS, // Function called w/ a count to query details
46} CALL_STATE;
47
48typedef struct _INSTANCE_STATE
49{
50 // Track the call state and array size for physical devices
51 CALL_STATE vkEnumeratePhysicalDevicesState;
52 uint32_t physicalDevicesCount;
53 _INSTANCE_STATE():vkEnumeratePhysicalDevicesState(UNCALLED), physicalDevicesCount(0) {};
54} INSTANCE_STATE;
55
56typedef struct _PHYSICAL_DEVICE_STATE
57{
58 // Track the call state and array sizes for various query functions
59 CALL_STATE vkGetPhysicalDeviceQueueFamilyPropertiesState;
60 uint32_t queueFamilyPropertiesCount;
61 _PHYSICAL_DEVICE_STATE():vkGetPhysicalDeviceQueueFamilyPropertiesState(UNCALLED), queueFamilyPropertiesCount(0) {};
62} PHYSICAL_DEVICE_STATE;
63