Fixed long long warnings, fixed precision qualifier values on Clang where qualifiers had the same values

This commit is contained in:
Christophe Riccio
2016-07-16 22:34:07 +02:00
parent c80e142816
commit 6a6b54b699
3 changed files with 9 additions and 33 deletions

View File

@@ -14,9 +14,12 @@ namespace
if (cerberus)
{
switch (a) {
case glm::highp: os << "hi"; break;
case glm::mediump: os << "md"; break;
case glm::lowp: os << "lo"; break;
case glm::highp: os << "uhi"; break;
case glm::mediump: os << "umd"; break;
case glm::lowp: os << "ulo"; break;
case glm::aligned_highp: os << "ahi"; break;
case glm::aligned_mediump: os << "amd"; break;
case glm::aligned_lowp: os << "alo"; break;
}
}