Merge pull request #2603 from jeremy-lunarg/hayes-fix-key-whitespace

Fix table key and whitespace
This commit is contained in:
Greg Fischer 2021-04-12 15:14:42 -06:00 committed by GitHub
commit 5602195eed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -170,7 +170,7 @@ void TParseVersions::initializeExtensionBehavior()
for (size_t ii = 0; ii < sizeof(exts) / sizeof(exts[0]); ii++) { for (size_t ii = 0; ii < sizeof(exts) / sizeof(exts[0]); ii++) {
// Add only extensions which require > spv1.0 to save space in map // Add only extensions which require > spv1.0 to save space in map
if (exts[ii].minSpvVersion > EShTargetSpv_1_0) { if (exts[ii].minSpvVersion > EShTargetSpv_1_0) {
extensionMinSpv[E_GL_EXT_ray_tracing] = exts[ii].minSpvVersion; extensionMinSpv[exts[ii].extensionName] = exts[ii].minSpvVersion;
} }
} }