aboutsummaryrefslogtreecommitdiff
path: root/layers/core_validation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'layers/core_validation.cpp')
-rw-r--r--layers/core_validation.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp
index aeba8c8d..ea3fd528 100644
--- a/layers/core_validation.cpp
+++ b/layers/core_validation.cpp
@@ -108,8 +108,6 @@ struct layer_data {
VkLayerInstanceDispatchTable *instance_dispatch_table;
#if MTMERGE
// MTMERGE - stuff pulled directly from MT
- // MTMTODO : Should be able just use device_extensions.wsi_enabled instead
- VkBool32 wsi_enabled;
uint64_t currentFenceId;
VkPhysicalDeviceProperties properties;
unordered_map<VkDeviceMemory, vector<MEMORY_RANGE>> bufferRanges, imageRanges;
@@ -171,7 +169,7 @@ struct layer_data {
layer_data()
: report_data(nullptr), device_dispatch_table(nullptr), instance_dispatch_table(nullptr),
#if MTMERGE
- wsi_enabled(VK_FALSE), currentFenceId(1),
+ currentFenceId(1),
#endif
device_extensions(){};
};