Merge branch 'Preview4_0' into alpha40translucency2

This commit is contained in:
AzaezelX 2019-07-08 04:11:57 -05:00
commit 63be684474
1102 changed files with 205083 additions and 62836 deletions

View file

@ -405,8 +405,11 @@ Var* ShaderFeatureHLSL::getInTexCoord( const char *name,
texCoord->setType( type );
}
AssertFatal( dStrcmp( type, (const char*)texCoord->type ) == 0,
"ShaderFeatureHLSL::getInTexCoord - Type mismatch!" );
//AssertFatal( dStrcmp( type, (const char*)texCoord->type ) == 0,
// "ShaderFeatureHLSL::getInTexCoord - Type mismatch!" );
if (dStrcmp(type, (const char*)texCoord->type) != 0)
return nullptr;
return texCoord;
}