aboutsummaryrefslogtreecommitdiff
path: root/layers
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtneygo@google.com>2016-02-12 13:22:04 -0700
committerJon Ashburn <jon@lunarg.com>2016-02-18 14:48:31 -0700
commitb120d51d84bc9b0b763f39e20dd2f3b9e5fd5388 (patch)
treeab127636defc8542f606e942381f3cc1a9b3bc17 /layers
parentdb476ba236a912e2ed76458fd65b306fe8ce36cd (diff)
downloadusermoji-b120d51d84bc9b0b763f39e20dd2f3b9e5fd5388.tar.xz
layers: MR221: Update extension info to match json files
Diffstat (limited to 'layers')
-rw-r--r--layers/device_limits.cpp2
-rw-r--r--layers/draw_state.cpp4
-rw-r--r--layers/image.cpp2
-rw-r--r--layers/mem_tracker.cpp2
-rw-r--r--layers/param_checker.cpp2
-rw-r--r--layers/swapchain.cpp2
-rw-r--r--layers/threading.cpp5
7 files changed, 10 insertions, 9 deletions
diff --git a/layers/device_limits.cpp b/layers/device_limits.cpp
index 0aafb2b8..f363ed25 100644
--- a/layers/device_limits.cpp
+++ b/layers/device_limits.cpp
@@ -168,7 +168,7 @@ static const VkLayerProperties dl_global_layers[] = {
"VK_LAYER_LUNARG_device_limits",
VK_API_VERSION,
1,
- "Validation layer: Device Limits",
+ "LunarG Validation Layer",
}
};
diff --git a/layers/draw_state.cpp b/layers/draw_state.cpp
index fadb98fe..b957ff52 100644
--- a/layers/draw_state.cpp
+++ b/layers/draw_state.cpp
@@ -3621,7 +3621,7 @@ static const VkLayerProperties ds_global_layers[] = {
"VK_LAYER_LUNARG_draw_state",
VK_API_VERSION,
1,
- "Validation layer: draw_state",
+ "LunarG Validation Layer",
}
};
@@ -3646,7 +3646,7 @@ static const VkLayerProperties ds_device_layers[] = {
"VK_LAYER_LUNARG_draw_state",
VK_API_VERSION,
1,
- "Validation layer: draw_state",
+ "LunarG Validation Layer",
}
};
diff --git a/layers/image.cpp b/layers/image.cpp
index 60b85698..56197c9c 100644
--- a/layers/image.cpp
+++ b/layers/image.cpp
@@ -263,7 +263,7 @@ static const VkLayerProperties pc_global_layers[] = {
"VK_LAYER_LUNARG_image",
VK_API_VERSION,
1,
- "Validation layer: image",
+ "LunarG Validation Layer",
}
};
diff --git a/layers/mem_tracker.cpp b/layers/mem_tracker.cpp
index 76fee5c5..930df00a 100644
--- a/layers/mem_tracker.cpp
+++ b/layers/mem_tracker.cpp
@@ -1292,7 +1292,7 @@ static const VkLayerProperties mtGlobalLayers[] = {
"VK_LAYER_LUNARG_mem_tracker",
VK_API_VERSION,
1,
- "Validation layer: mem_tracker",
+ "LunarG Validation Layer",
}
};
diff --git a/layers/param_checker.cpp b/layers/param_checker.cpp
index 9ed3a358..692723b9 100644
--- a/layers/param_checker.cpp
+++ b/layers/param_checker.cpp
@@ -193,7 +193,7 @@ static const VkLayerProperties pc_global_layers[] = {
"VK_LAYER_LUNARG_param_checker",
VK_API_VERSION,
1,
- "Validation layer: param_checker",
+ "LunarG Validation Layer",
}
};
diff --git a/layers/swapchain.cpp b/layers/swapchain.cpp
index 2fffbab1..68a8738f 100644
--- a/layers/swapchain.cpp
+++ b/layers/swapchain.cpp
@@ -64,7 +64,7 @@ static const VkLayerProperties swapchain_global_layers[] = {
"VK_LAYER_LUNARG_swapchain",
VK_API_VERSION,
1,
- "Validation layer: swapchain",
+ "LunarG Validation Layer",
}
};
diff --git a/layers/threading.cpp b/layers/threading.cpp
index db59aa95..032e7c8f 100644
--- a/layers/threading.cpp
+++ b/layers/threading.cpp
@@ -204,7 +204,7 @@ static const VkLayerProperties globalLayerProps[] = {
"Threading",
VK_API_VERSION, // specVersion
VK_MAKE_VERSION(0, 1, 0), // implVersion
- "layer: Threading",
+ "Google Validation Layer",
}
};
@@ -219,9 +219,10 @@ static const VkLayerProperties deviceLayerProps[] = {
"Threading",
VK_API_VERSION,
VK_MAKE_VERSION(0, 1, 0),
- "layer: Threading",
+ "Google Validation Layer",
}
};
+
VK_LAYER_EXPORT VkResult VKAPI_CALL vkEnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice, uint32_t *pCount, VkLayerProperties* pProperties)
{
return util_GetLayerProperties(ARRAY_SIZE(deviceLayerProps), deviceLayerProps, pCount, pProperties);