X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_texture.py;h=23c5777d39ce4b2e92401bacda2ebc0da4e74c68;hp=8c750ab9f73504493d09bd9d9138beba5837eb5e;hb=b130e82b37b033fdfb020ebc82a473df2d9d3db5;hpb=bde3ec824d300e9aff11914406fb76dd9016e387 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))