Silence some -Wswitch-default warnings.

This commit is contained in:
Rohit Nirmal 2014-12-02 18:20:52 -06:00
commit b030d29067
7 changed files with 20 additions and 17 deletions

View file

@ -55,9 +55,10 @@ static std::string GetGLSLVersionString()
return "#version 140";
case GLSL_150:
return "#version 150";
default:
// Shouldn't ever hit this
return "#version ERROR";
}
// Shouldn't ever hit this
return "#version ERROR";
}
void SHADER::SetProgramVariables()