summaryrefslogtreecommitdiff
path: root/tests/conform/test-fixtures.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conform/test-fixtures.c')
-rw-r--r--tests/conform/test-fixtures.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/conform/test-fixtures.c b/tests/conform/test-fixtures.c
new file mode 100644
index 00000000..24178d28
--- /dev/null
+++ b/tests/conform/test-fixtures.c
@@ -0,0 +1,12 @@
+
+#include <clutter/clutter.h>
+#include <cogl/cogl.h>
+
+void
+test_cogl_simple_rig (void)
+{
+ ClutterColor stage_color = { 0x0, 0x0, 0x0, 0xff };
+ stage = clutter_stage_get_default ();
+
+ clutter_stage_set_color (CLUTTER_STAGE (stage), &stage_color);
+}