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:
authorCampbell Barton <ideasman42@gmail.com>2007-10-20 22:01:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-10-20 22:01:57 +0400
commit960eaed6cd42a58785de0666ac219ef9bf7238b5 (patch)
tree76843efe82d3d839ff16840d42a7a7f85037f4d5 /source/blender/src/space.c
parentbfbb35004099f7c6f204ab24a7a2bf58f5673e73 (diff)
added an option to adjust the alpha clipping value in the oprnGL preferenes. in some cases you might
want to use 0.5 to see through more of the texture. (less halo's with clipmaps), defailt is 0.0 so it will only clip 0 alpha.
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 4d81d6bd232..559c74b7995 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -3865,8 +3865,13 @@ void drawinfospace(ScrArea *sa, void *spacedata)
&(U.uiflag), 0, 0, 0, 0, "Hide files/datablocks that start with a dot(.*)");
uiDefBut(block, LABEL,0,"OpenGL:",
- (xpos+edgsp+(5*midsp)+(5*mpref)),y6label,mpref,buth,
+ (xpos+edgsp+(5*midsp)+(5*mpref)),y7label,mpref,buth,
0, 0, 0, 0, 0, "");
+
+ uiDefButF(block, NUMSLI, B_DRAWINFO, "Clip Alpha: ",
+ (xpos+edgsp+(5*mpref)+(5*midsp)),y6,mpref,buth,
+ &(U.glalphaclip), 0.0, 1.0, 0, 0, "Clip alpha below this threshold in the 3d textured view");
+
uiDefButBitI(block, TOGN, USER_DISABLE_MIPMAP, B_MIPMAPCHANGED, "Mipmaps",
(xpos+edgsp+(5*mpref)+(5*midsp)),y5,mpref,buth,
&(U.gameflags), 0, 0, 0, 0, "Toggles between mipmap textures on (beautiful) and off (fast)");