1
0
mirror of https://github.com/brl/mutter.git synced 2025-03-22 19:23:54 +00:00

13 lines
257 B
C
Raw Normal View History

#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_actor_set_background_color (CLUTTER_ACTOR (stage), &stage_color);
}