summaryrefslogtreecommitdiff
path: root/cogl/cogl-color-private.h
diff options
context:
space:
mode:
authorRobert Bragg <robert@linux.intel.com>2010-06-10 14:07:40 +0100
committerRobert Bragg <robert@linux.intel.com>2010-06-15 15:26:27 +0100
commit49907d62678efb67bd8882151579ac13774a4896 (patch)
tree43e474e42ef0f85399f9c66d7dad987e26410d09 /cogl/cogl-color-private.h
parent3af1dc18b866ce84ca897b2c310fb3ab07677639 (diff)
cogl-color: add private _cogl_color_get_rgba_4ubv API
The journal logs colors as 4bytes into a vertex array and since we are planning to make CoglMaterial track its color using a CoglColor instead of a byte array this convenience will be useful for re-implementing _cogl_material_get_colorubv.
Diffstat (limited to 'cogl/cogl-color-private.h')
-rw-r--r--cogl/cogl-color-private.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/cogl/cogl-color-private.h b/cogl/cogl-color-private.h
new file mode 100644
index 00000000..2ce2bf76
--- /dev/null
+++ b/cogl/cogl-color-private.h
@@ -0,0 +1,40 @@
+/*
+ * Cogl
+ *
+ * An object oriented GL/GLES Abstraction/Utility Layer
+ *
+ * Copyright (C) 2010 Intel Corporation.
+ *
+ * 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 2 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
+ * <http://www.gnu.org/licenses/>.
+ *
+ *
+ *
+ * Authors:
+ * Robert Bragg <robert@linux.intel.com>
+ */
+
+#ifndef __COGL_COLOR_PRIVATE_PRIVATE_H
+#define __COGL_COLOR_PRIVATE_PRIVATE_H
+
+#include "cogl-color.h"
+
+#include <glib.h>
+
+void
+_cogl_color_get_rgba_4ubv (const CoglColor *color,
+ guint8 *dest);
+
+#endif /* __COGL_COLOR_PRIVATE_PRIVATE_H */
+