Fixed FaceFilling bug introduced with 38a3c1455187e72e8fced0b92debc87288c8c770 [formerly f16751c0d98bcc87ad6f976c7b7052cdb4b16a05]

Former-commit-id: 8cb2b02c3f960a74827ec81aa36f76c349cc5dda
This commit is contained in:
Lynix 2015-01-24 16:20:11 +01:00
parent cdff689403
commit d0bd62705b
1 changed files with 2 additions and 2 deletions

View File

@ -2035,9 +2035,9 @@ static_assert(nzCubemapFace_Max+1 == 6, "Cubemap face array is incomplete");
GLenum NzOpenGL::FaceFilling[] =
{
GL_POINT, // nzFaceFilling_Point
GL_FILL, // nzFaceFilling_Fill
GL_LINE, // nzFaceFilling_Line
GL_FILL // nzFaceFilling_Fill
GL_POINT // nzFaceFilling_Point
};
static_assert(nzFaceFilling_Max+1 == 3, "Face filling array is incomplete");