[gegl] exr-load: fix order of arguments in chromaticities constructor



commit 087b73891e39707d892a8d8daa38a90e082622d8
Author: Øyvind Kolås <pippin gimp org>
Date:   Wed Jul 11 14:34:34 2018 +0200

    exr-load: fix order of arguments in chromaticities constructor

 operations/external/exr-load.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/operations/external/exr-load.cpp b/operations/external/exr-load.cpp
index fb0487d4e..5758fda13 100644
--- a/operations/external/exr-load.cpp
+++ b/operations/external/exr-load.cpp
@@ -556,7 +556,7 @@ query_exr (const gchar *path,
       {
         const Chromaticities &c2 = chromaticities (file.header());
         space = babl_chromaticities_make_space
- (NULL, c2.white[0], c2.white[1], c2.red[0], c2.red[1], c2.green[0], c2.green[1], c2.blue[0], c2.blue[1], 
babl_trc ("linear"), babl_trc ("linear"), babl_trc ("linear"), 1);
+ (NULL, c2.white[0], c2.white[1], c2.red[0], c2.red[1], c2.green[0], c2.green[1], c2.blue[0], c2.blue[1], 
babl_trc ("sRGB"), babl_trc ("sRGB"), babl_trc ("sRGB"), 1);
       }
 
       if (ch.findChannel ("R") || ch.findChannel ("G") || ch.findChannel ("B"))


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]