Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-12-13 12:10:58 +0300
committerKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-12-13 12:10:58 +0300
commit5dc6d22e460217893ae1dbce8d0a1ad31d45844e (patch)
treef454e54fe55aa153f72ef7403c29c01298cd8043
parenta9128a5109fad96eb9537ac2096d8f7328291dbd (diff)
Reset backface culling. (Fix bug #1960)
-rw-r--r--source/blender/src/drawmesh.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/src/drawmesh.c b/source/blender/src/drawmesh.c
index 99ba58c09c9..6bd1dbe25c3 100644
--- a/source/blender/src/drawmesh.c
+++ b/source/blender/src/drawmesh.c
@@ -1147,6 +1147,9 @@ void draw_tface_mesh(Object *ob, Mesh *me, int dt)
glLoadIdentity();
default_gl_light();
glPopMatrix();
+
+ glFrontFace(GL_CCW);
+
}
void init_realtime_GL(void)