aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2018-06-13 10:34:54 -0600
committerMark Lobodzinski <mark@lunarg.com>2018-06-14 08:40:39 -0600
commitcb594cc883d4836fb360a4e99c01786eb3e4d351 (patch)
tree1d594412c490092c935e9d867d9afa0fd1b3ac08 /scripts
parenteb9397bb9c830f633559b7835ca334db9c437b23 (diff)
downloadvulkan-tools-cb594cc883d4836fb360a4e99c01786eb3e4d351.tar.gz
scripts: Rename helper file generator script
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kvt_genvk.py2
-rw-r--r--scripts/vulkan_tools_helper_file_generator.py (renamed from scripts/helper_file_generator.py)2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kvt_genvk.py b/scripts/kvt_genvk.py
index 26367686..428d845d 100644
--- a/scripts/kvt_genvk.py
+++ b/scripts/kvt_genvk.py
@@ -20,7 +20,7 @@ from generator import write
from cgenerator import CGeneratorOptions, COutputGenerator
# Generator Modifications
from mock_icd_generator import MockICDGeneratorOptions, MockICDOutputGenerator
-from helper_file_generator import HelperFileOutputGenerator, HelperFileOutputGeneratorOptions
+from vulkan_tools_helper_file_generator import HelperFileOutputGenerator, HelperFileOutputGeneratorOptions
# Simple timer functions
startTime = None
diff --git a/scripts/helper_file_generator.py b/scripts/vulkan_tools_helper_file_generator.py
index 003e7a51..e5ddcb43 100644
--- a/scripts/helper_file_generator.py
+++ b/scripts/vulkan_tools_helper_file_generator.py
@@ -110,7 +110,7 @@ class HelperFileOutputGenerator(OutputGenerator):
self.library_name = genOpts.library_name
# File Comment
file_comment = '// *** THIS FILE IS GENERATED - DO NOT EDIT ***\n'
- file_comment += '// See helper_file_generator.py for modifications\n'
+ file_comment += '// See vulkan_tools_helper_file_generator.py for modifications\n'
write(file_comment, file=self.outFile)
# Copyright Notice
copyright = ''