]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/export_texture.py
Set both min and mag filters when exporting textures
[libs/gl.git] / blender / io_mspgl / export_texture.py
index c3c58c3b19e9ae3affab9830e95a3eec02b42762..9f520cbd7dea5edac5c8cdb690cc8cedd037d9bb 100644 (file)
@@ -10,17 +10,17 @@ class TextureExporter:
 
                if texture.use_interpolation:
                        if texture.use_mipmap:
-                               tex_res.statements.append(Statement("min_filter", Token('LINEAR_MIPMAP_LINEAR')))
+                               tex_res.statements.append(Statement("filter", Token('LINEAR_MIPMAP_LINEAR')))
                                tex_res.statements.append(Statement("generate_mipmap", True))
                        else:
-                               tex_res.statements.append(Statement("min_filter", Token('LINEAR')))
+                               tex_res.statements.append(Statement("filter", Token('LINEAR')))
                        tex_res.statements.append(Statement("max_anisotropy", texture.filter_eccentricity))
                else:
                        if texture.use_mipmap:
-                               tex_res.statements.append(Statement("min_filter", Token('NEAREST_MIPMAP_NEAREST')))
+                               tex_res.statements.append(Statement("filter", Token('NEAREST_MIPMAP_NEAREST')))
                                tex_res.statements.append(Statement("generate_mipmap", True))
                        else:
-                               tex_res.statements.append(Statement("min_filter", Token('NEAREST')))
+                               tex_res.statements.append(Statement("filter", Token('NEAREST')))
 
                if not self.inline_data and texture.image.filepath:
                        tex_res.statements.append(Statement("external_image", os.path.basename(texture.image.filepath)))