From 91dc459bccaa0ea89cf8a65cbb46729763ff6156 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 28 Nov 2007 21:42:27 +0000 Subject: [PATCH] Bugfix: crash with textured drawing in editmode and linked duplicates. --- source/blender/src/drawmesh.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/blender/src/drawmesh.c b/source/blender/src/drawmesh.c index ba20771b179..3c98888ead9 100644 --- a/source/blender/src/drawmesh.c +++ b/source/blender/src/drawmesh.c @@ -1207,8 +1207,6 @@ void draw_mesh_textured(Object *ob, DerivedMesh *dm, int faceselect) /* in editmode, the blend mode needs to be set incase it was ADD */ glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - - dm->release(dm); } void init_realtime_GL(void)