remove unused file conversions-type.c
authorØyvind Kolås <pippin@gimp.org>
Tue, 28 May 2019 21:32:34 +0000 (23:32 +0200)
committerØyvind Kolås <pippin@gimp.org>
Tue, 28 May 2019 21:32:48 +0000 (23:32 +0200)
Really resolving merge request !12 this time.

babl/babl-space.c
babl/babl.h
babl/base/conversions-type.c [deleted file]

index ebf05be7681cbc88662da5c1229eaa724f6f32d8..f64ca3baba5ba8c68cab28c7e26a50ae432562ac 100644 (file)
@@ -1218,3 +1218,15 @@ babl_space_is_cmyk (const Babl *space)
  * of Adobe Systems Incorporated in many countires.
  */
 
+const double *
+babl_space_get_RGBtoXYZ (const Babl *space)
+{
+   return &space->space.RGBtoXYZ[0];
+}
+
+const double *
+babl_space_get_XYZtoRGB (const Babl *space)
+{
+   return &space->space.XYZtoRGB[0];
+}
+
index 3b2fa6846921c14747e8331f97942024371e7ee8..8e71fac6fc258b1f5149400b93a381d5e0dfe361 100644 (file)
@@ -577,6 +577,14 @@ void babl_space_get (const Babl *space,
                      const Babl **green_trc,
                      const Babl **blue_trc);
 
+/* returns a pointer to the 9 element RGB to XYZ matrix */
+const double *
+babl_space_get_RGBtoXYZ (const Babl *space);
+
+/* returns a pointer to the 9 element XYZ to RGB matrix */
+const double *
+babl_space_get_XYZtoRGB (const Babl *space);
+
 
 /**
  * babl_model_is:
diff --git a/babl/base/conversions-type.c b/babl/base/conversions-type.c
deleted file mode 100644 (file)
index 5ac1745..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/* babl - dynamically extendable universal pixel conversion library.
- * Copyright (C) 2005, Øyvind Kolås.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General
- * Public License along with this library; if not, see
- * <https://www.gnu.org/licenses/>.
- */
-
-#include "config.h"
-#include <string.h>
-#include "babl.h"
-#include <stdio.h>
-
-