diff options
| author | Tobin Ehlis <tobine@google.com> | 2016-12-06 14:47:52 -0700 |
|---|---|---|
| committer | Tobin Ehlis <tobine@google.com> | 2016-12-07 12:16:50 -0700 |
| commit | ba46c486eb28281b519a05733cc3908bcbfc141c (patch) | |
| tree | 049f39e3d5e5e2200f813b294f541cdc14206695 /layers/core_validation.h | |
| parent | f2e9f10e068677eb5e49a6da1e88d9ec4b62e6d1 (diff) | |
| download | usermoji-ba46c486eb28281b519a05733cc3908bcbfc141c.tar.xz | |
layers:Add validation flags
Added validation flags to allow for disabling of validation for:
vkWaitForFences
vkGetFenceStatus
vkDeviceWaitIdle
vkQueueWaitIdle
Diffstat (limited to 'layers/core_validation.h')
| -rw-r--r-- | layers/core_validation.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/layers/core_validation.h b/layers/core_validation.h index e09fd7d8..e7918934 100644 --- a/layers/core_validation.h +++ b/layers/core_validation.h @@ -86,6 +86,10 @@ struct CHECK_DISABLED { bool free_descriptor_sets; // Skip validation prior to vkFreeDescriptorSets() bool allocate_descriptor_sets; // Skip validation prior to vkAllocateDescriptorSets() bool update_descriptor_sets; // Skip validation prior to vkUpdateDescriptorSets() + bool wait_for_fences; + bool get_fence_state; + bool queue_wait_idle; + bool device_wait_idle; }; /* |
