Common/GL/D3D12: Fix int vector ctor in vertex shader and a compare opcode.

This commit is contained in:
Vincent Lejeune 2015-10-05 19:30:06 +02:00
parent de97d3a7aa
commit b0f8611f49
6 changed files with 28 additions and 13 deletions

View file

@ -10,6 +10,12 @@ std::string GLVertexDecompilerThread::getFloatTypeName(size_t elementCount)
return getFloatTypeNameImpl(elementCount);
}
std::string GLVertexDecompilerThread::getIntTypeName(size_t elementCount)
{
return "ivec4";
}
std::string GLVertexDecompilerThread::getFunction(FUNCTION f)
{
return getFunctionImpl(f);