gl_shader_decompiler: IPA FrontFacing: the right value when is the front face is 0xFFFFFFFF.
This commit is contained in:
parent
3bddd5351e
commit
430e1f864b
1 changed files with 1 additions and 1 deletions
|
@ -928,7 +928,7 @@ private:
|
||||||
case Attribute::Index::FrontFacing:
|
case Attribute::Index::FrontFacing:
|
||||||
// TODO(Subv): Find out what the values are for the other elements.
|
// TODO(Subv): Find out what the values are for the other elements.
|
||||||
ASSERT(stage == Maxwell3D::Regs::ShaderStage::Fragment);
|
ASSERT(stage == Maxwell3D::Regs::ShaderStage::Fragment);
|
||||||
return "vec4(0, 0, 0, uintBitsToFloat(gl_FrontFacing ? 1 : 0))";
|
return "vec4(0, 0, 0, intBitsToFloat(gl_FrontFacing ? -1 : 0))";
|
||||||
default:
|
default:
|
||||||
const u32 index{static_cast<u32>(attribute) -
|
const u32 index{static_cast<u32>(attribute) -
|
||||||
static_cast<u32>(Attribute::Index::Attribute_0)};
|
static_cast<u32>(Attribute::Index::Attribute_0)};
|
||||||
|
|
Loading…
Reference in a new issue