summaryrefslogtreecommitdiffstats
path: root/include/gui/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gui/image.h')
-rw-r--r--include/gui/image.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/gui/image.h b/include/gui/image.h
new file mode 100644
index 0000000000..ea423b2596
--- /dev/null
+++ b/include/gui/image.h
@@ -0,0 +1,20 @@
+/*
+ * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+ *
+ * GPL v2
+ */
+
+#ifndef __GUI_IMAGE_H__
+#define __GUI_IMAGE_H__
+
+struct image_renderer;
+
+struct image {
+ void *data;
+ struct image_renderer *ir;
+ int height;
+ int width;
+ int bits_per_pixel;
+};
+
+#endif /* __IMAGE_RENDERER_H__ */