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:
Tony Wasserka 2013-12-30 20:37:59 +01:00
parent 3aa0a63fe6
commit de16b7207c
2 changed files with 2 additions and 0 deletions

View File

@ -1167,6 +1167,7 @@ void Renderer::SetGenerationMode()
};
// rastdc.FrontCounterClockwise must be false for this to work
// TODO: GX_CULL_ALL not supported, yet!
gx_state.rastdc.CullMode = d3dCullModes[bpmem.genMode.cullmode];
}

View File

@ -1673,6 +1673,7 @@ void Renderer::SetGenerationMode()
// none, ccw, cw, ccw
if (bpmem.genMode.cullmode > 0)
{
// TODO: GX_CULL_ALL not supported, yet!
glEnable(GL_CULL_FACE);
glFrontFace(bpmem.genMode.cullmode == 2 ? GL_CCW : GL_CW);
}