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