aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Young <marky@lunarg.com>2016-09-01 09:18:45 -0600
committerMark Young <marky@lunarg.com>2016-09-01 09:18:45 -0600
commitbd7e75648ee7df31776c2321335c242fca6b925f (patch)
treec5c4b6d23ee89c659674f2a5e154c152140cf1ac
parentffb06194c4792cf350d7fa5737fda6e8e38cb0de (diff)
downloadusermoji-bd7e75648ee7df31776c2321335c242fca6b925f.tar.xz
loader: Update script names with correct ext name
lunarg_debug_report is now called ext_debug_report. Change-Id: Ieceb323ac0a05def2f49ae399460b02b1e245639
-rw-r--r--layers/vk_layer_settings.txt2
-rwxr-xr-xvk_layer_documentation_generate.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/layers/vk_layer_settings.txt b/layers/vk_layer_settings.txt
index 82600c3f..3674035e 100644
--- a/layers/vk_layer_settings.txt
+++ b/layers/vk_layer_settings.txt
@@ -25,7 +25,7 @@
# VK_DBG_LAYER_ACTION_LOG_MSG - Log a txt message to stdout or to a log file
# specified via the <LayerIdentifier>.log_filename setting (see below)
# VK_DBG_LAYER_ACTION_CALLBACK - Call user defined callback function(s) that
-# have been registered via the VK_EXT_LUNARG_debug_report extension. Since
+# have been registered via the VK_EXT_debug_report extension. Since
# app must register callback, this is a NOOP for the settings file.
# VK_DBG_LAYER_DEBUG_OUTPUT [Windows only] - Log a txt message using the Windows
# OutputDebugString function -- messages will show up in Visual Studio output
diff --git a/vk_layer_documentation_generate.py b/vk_layer_documentation_generate.py
index ca67a120..f87091d6 100755
--- a/vk_layer_documentation_generate.py
+++ b/vk_layer_documentation_generate.py
@@ -323,7 +323,7 @@ class LayerDoc:
core_api_names = [p.name for p in vulkan.core.protos]
wsi_s_names = [p.name for p in vulkan.ext_khr_surface.protos]
wsi_ds_names = [p.name for p in vulkan.ext_khr_device_swapchain.protos]
- dbg_rpt_names = [p.name for p in vulkan.lunarg_debug_report.protos]
+ dbg_rpt_names = [p.name for p in vulkan.ext_debug_report.protos]
api_names = core_api_names + wsi_s_names + wsi_ds_names + dbg_rpt_names
for ln in self.layer_doc_dict:
for chk in self.layer_doc_dict[ln]: