We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e4ba9 commit 31118feCopy full SHA for 31118fe
scripts/gn/generate_vulkan_layers_json.py
@@ -1,7 +1,7 @@
1
#!/usr/bin/env python
2
3
# Copyright (C) 2016 The ANGLE Project Authors.
4
-# Copyright (c) 2022-2023 LunarG, Inc.
+# Copyright (c) 2022-2024 LunarG, Inc.
5
#
6
# Licensed under the Apache License, Version 2.0 (the "License");
7
# you may not use this file except in compliance with the License.
@@ -114,6 +114,7 @@ def main():
114
open(json_in_name) as infile:
115
for line in infile:
116
line = line.replace('@JSON_LIBRARY_PATH@', relative_path_prefix + layer_lib_name)
117
+ line = line.replace('@JSON_LAYER_NAME@', 'VK_LAYER_KHRONOS_validation')
118
json_out_file.write(line)
119
120
if __name__ == '__main__':
0 commit comments