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:
authorThomas Dinges <blender@dingto.org>2013-03-23 12:25:29 +0400
committerThomas Dinges <blender@dingto.org>2013-03-23 12:25:29 +0400
commit961df695269a7435da704e692284e6ccdef6389f (patch)
tree8ae9241daf577923e015a79285bc614cfda8fe31 /source/blender/editors
parent5cbc000f05811e1dc36a48262eba54fb4ed3aad0 (diff)
Code cleanup:
* Remove already deprecated USER_DISABLE_AA flag from code, only commented DNA flag left.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_view3d/view3d_draw.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c
index 138fe2cc9cf..66047b6e8f4 100644
--- a/source/blender/editors/space_view3d/view3d_draw.c
+++ b/source/blender/editors/space_view3d/view3d_draw.c
@@ -3253,7 +3253,6 @@ static void view3d_main_area_draw_objects(const bContext *C, ARegion *ar, const
/* enables anti-aliasing for 3D view drawing */
if (U.ogl_multisamples != USER_MULTISAMPLE_NONE) {
- // if (!(U.gameflags & USER_DISABLE_AA))
glEnable(GL_MULTISAMPLE_ARB);
}
@@ -3371,7 +3370,6 @@ static void view3d_main_area_draw_objects(const bContext *C, ARegion *ar, const
/* Disable back anti-aliasing */
if (U.ogl_multisamples != USER_MULTISAMPLE_NONE) {
- // if (!(U.gameflags & USER_DISABLE_AA))
glDisable(GL_MULTISAMPLE_ARB);
}