From 49907d62678efb67bd8882151579ac13774a4896 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Thu, 10 Jun 2010 14:07:40 +0100 Subject: [PATCH] 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. --- cogl/cogl-color-private.h | 40 +++++++++++++++++++++++++++++++++++++++ cogl/cogl-color.c | 7 +++++++ 2 files changed, 47 insertions(+) create mode 100644 cogl/cogl-color-private.h diff --git a/cogl/cogl-color-private.h b/cogl/cogl-color-private.h new file mode 100644 index 000000000..2ce2bf76f --- /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 + * . + * + * + * + * Authors: + * Robert Bragg + */ + +#ifndef __COGL_COLOR_PRIVATE_PRIVATE_H +#define __COGL_COLOR_PRIVATE_PRIVATE_H + +#include "cogl-color.h" + +#include + +void +_cogl_color_get_rgba_4ubv (const CoglColor *color, + guint8 *dest); + +#endif /* __COGL_COLOR_PRIVATE_PRIVATE_H */ + diff --git a/cogl/cogl-color.c b/cogl/cogl-color.c index 5051bf10e..e1120dd94 100644 --- a/cogl/cogl-color.c +++ b/cogl/cogl-color.c @@ -270,3 +270,10 @@ cogl_color_equal (gconstpointer v1, gconstpointer v2) return *c1 == *c2 ? TRUE : FALSE; } +void +_cogl_color_get_rgba_4ubv (const CoglColor *color, + guint8 *dest) +{ + memcpy (dest, color, 4); +} +