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-10 21:57:52 +0300
committerTon Roosendaal <ton@blender.org>2006-02-10 21:57:52 +0300
commitb9425b2a3509b4715acf753cefd4a2392b537ccb (patch)
treebb222286e4c223f4b3c16952830f4594656ad1b5 /source/blender/makesdna/DNA_texture_types.h
parent945484e92ab55d61c10d968a207fe4468e26e927 (diff)
Interesting commit for artists using huge textures;
The code that generated mipmaps took a real long time to do it... on a 5k x 5k image it took here (no optim, debug compile) 32.5 sec. Recoded the very old filtering routine, which already brought it down to 2.8 seconds. Then tested if we even need this filtering... in many cases the images are painted or photographs, which is filtered OK already. Without the filter, the mipmap timing went down to 0.39 second. :) http://www.blender.org/bf/filters/index1.html Here's an example of two 'mips' generated with or without gauss filter. Note that aliasing in an image remains there... which can be a wanted effect anyway. So; added the gauss filter as option in making mipmaps. Also had to reshuffle the buttons there in a more logical manner. There's also disabled code in the do_versions to set 'gauss' on in older files. Will be enabled during release time.
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 3cb37dff29e..7aad3ee6e37 100644
--- a/source/blender/makesdna/DNA_texture_types.h
+++ b/source/blender/makesdna/DNA_texture_types.h
@@ -238,8 +238,8 @@ typedef struct TexMapping {
#define TEX_ANTISCALE 512
#define TEX_STD_FIELD 1024
#define TEX_NORMALMAP 2048
+#define TEX_GAUSS_MIP 4096
-#define TEX_LASOPPATCH 8192
#define TEX_MORKPATCH 16384
/* flag */