aboutsummaryrefslogtreecommitdiff
path: root/scripts/mock_icd_generator.py
diff options
context:
space:
mode:
authorShannon McPherson <shannon@lunarg.com>2019-04-05 10:46:16 -0600
committerShannon McPherson <shannon@lunarg.com>2019-04-09 14:16:22 -0600
commit2abb69904b9ad017d39d3da1e7fc3dec1a584cd8 (patch)
treefea1662ad714e96d6554786dead4902a4b74d7b1 /scripts/mock_icd_generator.py
parent96f2ff3d7c79cf6ca915a93fd6efef2ded921085 (diff)
downloadusermoji-2abb69904b9ad017d39d3da1e7fc3dec1a584cd8.tar.xz
scripts: Update known good for 106 header update
Changes: - Integrate upstream script changes: We have to plumb-through the new conventions object to continue using the makeCParamDecl utility function - Add GGP to available platforms - Define `VULKAN_HPP_TYPESAFE_CONVERSION` in `cube.cpp` to avoid build errors concerning explicit/implicit casting in `vulkan.hpp` - Update known-good files Updated: - `build-android/vulkan-headers_revision_android` - `cube/cube.cpp` - `scripts/common_codegen.py` - `scripts/known_good.json` - `scripts/kvt_genvk.py` - `scripts/mock_icd_generator.py` - `scripts/vulkan_tools_helper_file_generator.py` Change-Id: Ie9deb9f088d666195bcb987e30974f274d33fc85
Diffstat (limited to 'scripts/mock_icd_generator.py')
-rw-r--r--scripts/mock_icd_generator.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mock_icd_generator.py b/scripts/mock_icd_generator.py
index 4cbd8313..48d9465f 100644
--- a/scripts/mock_icd_generator.py
+++ b/scripts/mock_icd_generator.py
@@ -934,6 +934,7 @@ CUSTOM_C_INTERCEPTS = {
# separate line, align parameter names at the specified column
class MockICDGeneratorOptions(GeneratorOptions):
def __init__(self,
+ conventions = None,
filename = None,
directory = '.',
apiname = None,
@@ -959,7 +960,7 @@ class MockICDGeneratorOptions(GeneratorOptions):
alignFuncParam = 0,
expandEnumerants = True,
helper_file_type = ''):
- GeneratorOptions.__init__(self, filename, directory, apiname, profile,
+ GeneratorOptions.__init__(self, conventions, filename, directory, apiname, profile,
versions, emitversions, defaultExtensions,
addExtensions, removeExtensions, emitExtensions, sortProcedure)
self.prefixText = prefixText