Commit 4e9e400e by Mike Weiblen

Fix for not-handled-in-switch warnings

Added default to the switch() for AMD_EXTENSIONS to avoid a spew of warning messages.
parent c37f8d6b
...@@ -4198,6 +4198,8 @@ spv::Id TGlslangToSpvTraverser::createInvocationsOperation(glslang::TOperator op ...@@ -4198,6 +4198,8 @@ spv::Id TGlslangToSpvTraverser::createInvocationsOperation(glslang::TOperator op
groupOperation = spv::GroupOperationExclusiveScan; groupOperation = spv::GroupOperationExclusiveScan;
spvGroupOperands.push_back(groupOperation); spvGroupOperands.push_back(groupOperation);
break; break;
default:
break;
} }
#endif #endif
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment