Fixed missing files from previous commit

Former-commit-id: 0a757b5cfda97dd6f88d5a17b8dc41329c139d32
This commit is contained in:
Lynix
2013-09-06 18:05:39 +02:00
parent e92f388c65
commit 1ed8ea8ad5
3 changed files with 14 additions and 14 deletions

View File

@@ -886,17 +886,17 @@ void NzRenderer::SetDepthFunc(nzRendererComparison compareFunc)
s_states.depthFunc = compareFunc;
}
void NzRenderer::SetFaceCulling(nzFaceCulling cullingMode)
void NzRenderer::SetFaceCulling(nzFaceSide faceSide)
{
#ifdef NAZARA_DEBUG
if (cullingMode > nzFaceCulling_Max)
if (faceSide > nzFaceSide_Max)
{
NazaraError("Face culling out of enum");
NazaraError("Face side out of enum");
return;
}
#endif
s_states.faceCulling = cullingMode;
s_states.faceCulling = faceSide;
}
void NzRenderer::SetFaceFilling(nzFaceFilling fillingMode)