From 7d070f97ad8849de052919fdd75a020d1edb6cfc Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 21 Oct 2015 20:06:49 +0200 Subject: Fix T46524: Use Alpha (Straight/Premultiply) option missing in 2.76, part II. Different issue actually, here RAWTGA was simply forgotten in the alpha-capable formats... --- source/blender/blenkernel/intern/image.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c index 0c5941f6aa6..3aa2ba818de 100644 --- a/source/blender/blenkernel/intern/image.c +++ b/source/blender/blenkernel/intern/image.c @@ -1363,6 +1363,7 @@ char BKE_imtype_valid_channels(const char imtype, bool write_file) if (write_file) break; /* fall-through */ case R_IMF_IMTYPE_TARGA: + case R_IMF_IMTYPE_RAWTGA: case R_IMF_IMTYPE_IRIS: case R_IMF_IMTYPE_PNG: case R_IMF_IMTYPE_RADHDR: -- cgit v1.2.3