* 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];
+}
+
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:
+++ /dev/null
-/* 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>
-
-