mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-10 12:45:46 +00:00
D3D/OGL: Add a TODO noting that we don't support GX_CULL_ALL, most notably required for accurate zfreeze emulation.
This commit is contained in:
parent
3aa0a63fe6
commit
de16b7207c
@ -1167,6 +1167,7 @@ void Renderer::SetGenerationMode()
|
|||||||
};
|
};
|
||||||
|
|
||||||
// rastdc.FrontCounterClockwise must be false for this to work
|
// rastdc.FrontCounterClockwise must be false for this to work
|
||||||
|
// TODO: GX_CULL_ALL not supported, yet!
|
||||||
gx_state.rastdc.CullMode = d3dCullModes[bpmem.genMode.cullmode];
|
gx_state.rastdc.CullMode = d3dCullModes[bpmem.genMode.cullmode];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1673,6 +1673,7 @@ void Renderer::SetGenerationMode()
|
|||||||
// none, ccw, cw, ccw
|
// none, ccw, cw, ccw
|
||||||
if (bpmem.genMode.cullmode > 0)
|
if (bpmem.genMode.cullmode > 0)
|
||||||
{
|
{
|
||||||
|
// TODO: GX_CULL_ALL not supported, yet!
|
||||||
glEnable(GL_CULL_FACE);
|
glEnable(GL_CULL_FACE);
|
||||||
glFrontFace(bpmem.genMode.cullmode == 2 ? GL_CCW : GL_CW);
|
glFrontFace(bpmem.genMode.cullmode == 2 ? GL_CCW : GL_CW);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user