]> Dogcows Code - chaz/openbox/blobdiff - render/color.h
rename color_rgb to RrColor
[chaz/openbox] / render / color.h
index 1e0cc57a042723a705efc191064e53fe8c5777bf..ba9fb22b4e7eb41b4fca4a42600d4e8cdd88d222 100644 (file)
@@ -1,19 +1,39 @@
 #ifndef __color_h
 #define __color_h
 
+#include "render.h"
+
 #include <X11/Xlib.h>
+#include <X11/Xutil.h>
+#include <glib.h>
+
+#if (G_BYTE_ORDER == G_BIG_ENDIAN)
+#define default_red_offset 0
+#define default_green_offset 8
+#define default_blue_offset 16
+#define default_alpha_offset 24
+#define render_endian MSBFirst  
+#else
+#define default_alpha_offset 24
+#define default_red_offset 16
+#define default_green_offset 8
+#define default_blue_offset 0
+#define render_endian LSBFirst
+#endif /* G_BYTE_ORDER == G_BIG_ENDIAN */
+
+struct _RrColor {
+    const RrInstance *inst;
 
-typedef struct color_rgb {
     int r;
     int g;
     int b;
     unsigned long pixel;
     GC gc;
-} color_rgb;
+};
 
-void color_allocate_gc(color_rgb *in);
-color_rgb *color_parse(char *colorname);
-color_rgb *color_new(int r, int g, int b);
-void color_free(color_rgb *in);
+void color_allocate_gc(RrColor *in);
+XColor *pickColor(const RrInstance *inst, gint r, gint g, gint b);
+void reduce_depth(const RrInstance *inst, pixel32 *data, XImage *im);
+void increase_depth(const RrInstance *inst, pixel32 *data, XImage *im);
 
 #endif /* __color_h */
This page took 0.023363 seconds and 4 git commands to generate.