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
path: root/source
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2007-09-09 15:58:03 +0400
committerJoshua Leung <aligorith@gmail.com>2007-09-09 15:58:03 +0400
commit6798cc26e4302054f1a001d393fb2729a9d01968 (patch)
tree7582e91c0db3e88d15b5bab3509d56a476fb5766 /source
parent3a51aed18de35963845339bcd72e7c5085dc6e1f (diff)
Reverting commit 11974 as the setting in question, apparently causes major performance bottlenecks.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/material.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/material.c b/source/blender/blenkernel/intern/material.c
index e413f8344c9..d70cd683237 100644
--- a/source/blender/blenkernel/intern/material.c
+++ b/source/blender/blenkernel/intern/material.c
@@ -165,7 +165,7 @@ void init_material(Material *ma)
ma->sss_front= 1.0f;
ma->sss_back= 1.0f;
- ma->mode= MA_TRACEBLE|MA_SHADBUF|MA_SHADOW|MA_SHADOW_TRA|MA_RADIO|MA_RAYBIAS|MA_TANGENT_STR;
+ ma->mode= MA_TRACEBLE|MA_SHADBUF|MA_SHADOW|MA_RADIO|MA_RAYBIAS|MA_TANGENT_STR;
ma->preview = NULL;
}