Remove unused variable. (#2273)

The `isMat` variable is no longer used in the HLSL parser. Removed.
This commit is contained in:
dan sinclair 2020-06-15 14:10:44 -04:00 committed by GitHub
parent 8496b782fb
commit 00965b9fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -334,7 +334,6 @@ glslang::TString& AppendTypeName(glslang::TString& s, const char* argOrder, cons
inline bool IsValid(const char* cname, char retOrder, char retType, char argOrder, char argType, int dim0, int dim1)
{
const bool isVec = (argOrder == 'V');
const bool isMat = (argOrder == 'M');
const std::string name(cname);