X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_texture.py;h=23c5777d39ce4b2e92401bacda2ebc0da4e74c68;hb=944deb38084e5e5bc82182faab2db2be156b971c;hp=8c750ab9f73504493d09bd9d9138beba5837eb5e;hpb=0055fd43dc1d3b6ca65823f40dfdf78e65770f15;p=libs%2Fgl.git diff --git a/blender/io_mspgl/export_texture.py b/blender/io_mspgl/export_texture.py index 8c750ab9..23c5777d 100644 --- a/blender/io_mspgl/export_texture.py +++ b/blender/io_mspgl/export_texture.py @@ -25,12 +25,13 @@ class TextureExporter: tex_res.statements.append(Statement("external_image", image_name(texture.image))) else: texdata = "" + colorspace = texture.image.colorspace_settings.name if texture.use_alpha: - fmt = 'RGBA' + fmt = 'SRGB_ALPHA' if colorspace=='sRGB' else 'RGBA' for p in texture.image.pixels: texdata += "\\x{:02X}".format(int(p*255)) else: - fmt = 'RGB' + fmt = 'SRGB' if colorspace=='sRGB' else 'RGB' for i in range(0, len(texture.image.pixels), 4): for j in range(3): texdata += "\\x{:02X}".format(int(texture.image.pixels[i+j]*255))