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:
authorTon Roosendaal <ton@blender.org>2006-02-23 23:18:29 +0300
committerTon Roosendaal <ton@blender.org>2006-02-23 23:18:29 +0300
commitd9aac9d9b84825c8baef8e82be7ce465673e932e (patch)
treed824462e8ac70d67bf730dd2b47147cda44536da /source/blender/makesdna/DNA_texture_types.h
parent977c201bc0d795a96a3cc8eb80f9327dc7bb5f4b (diff)
Bugfix for very very ancient envmap error. When you scale the envmap
object the OSA filtersize inverse scaled as well. Made small scaled envmap objects far to blurry.
Diffstat (limited to 'source/blender/makesdna/DNA_texture_types.h')
-rw-r--r--source/blender/makesdna/DNA_texture_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_texture_types.h b/source/blender/makesdna/DNA_texture_types.h
index 6711ffbf3a8..ea49e7d0e6b 100644
--- a/source/blender/makesdna/DNA_texture_types.h
+++ b/source/blender/makesdna/DNA_texture_types.h
@@ -112,13 +112,13 @@ typedef struct EnvMap {
struct Image *ima; /* type ENV_LOAD */
struct Image *cube[6]; /* these images are dynamic, not part of the main struct */
float imat[4][4];
+ float obimat[3][3];
short type, stype;
float clipsta, clipend;
unsigned int notlay;
short cuberes, depth;
short ok, lastframe;
short recalc, lastsize;
- int pad1;
} EnvMap;
typedef struct Tex {