maxwell_3d: Use names that match envytools for VertexType.
This commit is contained in:
parent
15925b8293
commit
3754e0fdfd
|
@ -202,22 +202,22 @@ public:
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string TypeToString() const {
|
std::string TypeString() const {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case Type::SignedNorm:
|
case Type::SignedNorm:
|
||||||
return "SignedNorm";
|
return "SNORM";
|
||||||
case Type::UnsignedNorm:
|
case Type::UnsignedNorm:
|
||||||
return "UnsignedNorm";
|
return "UNORM";
|
||||||
case Type::SignedInt:
|
case Type::SignedInt:
|
||||||
return "SignedInt";
|
return "SINT";
|
||||||
case Type::UnsignedInt:
|
case Type::UnsignedInt:
|
||||||
return "UnsignedInt";
|
return "UINT";
|
||||||
case Type::UnsignedScaled:
|
case Type::UnsignedScaled:
|
||||||
return "UnsignedScaled";
|
return "USCALED";
|
||||||
case Type::SignedScaled:
|
case Type::SignedScaled:
|
||||||
return "SignedScaled";
|
return "SSCALED";
|
||||||
case Type::Float:
|
case Type::Float:
|
||||||
return "Float";
|
return "FLOAT";
|
||||||
}
|
}
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
return {};
|
return {};
|
||||||
|
|
Reference in New Issue