#include #define STAGE_WIDTH 640 #define STAGE_HEIGHT 480 #define COLS 18 #define ROWS 20 int main (int argc, char *argv[]) { ClutterActor *stage; gchar *text; gsize size; ClutterColor stage_color = { 0x00, 0x00, 0x00, 0xff }; ClutterColor label_color = { 0xff, 0xff, 0xff, 0xff }; clutter_init (&argc, &argv); stage = clutter_stage_get_default (); clutter_actor_set_size (stage, STAGE_WIDTH, STAGE_HEIGHT); clutter_stage_set_color (CLUTTER_STAGE (stage), &stage_color); { gint font_size; gdouble scale; gint row, col; for (row=0; row