Questions tagged [clutter]

An open source software library for creating dynamic graphical user interfaces.

Clutter is an open source (LGPL 2.1) software library for creating fast, compelling, portable, and dynamic graphical user interfaces.

Clutter uses OpenGL for rendering (and optionally OpenGL|ES for use on mobile and embedded platforms), but wraps an easy to use, efficient, flexible API around GL's complexity.

155 questions
0
votes
1 answer

Working with Children Actors in the Clutter API

I have been playing around with clutter and have become a bit confused about how to work with Actors and child actors. Let's start with a simple example which has caused me some confusion. I create two Clutter::Rectangles (im using the Cluttermm…
0
votes
1 answer

How to move window/stage using clutter_actor_animate?

How to animate or move window using clutter_actor_animate? Here's my code and it didn't work. clutter_init(&argc, &argv); ClutterActor stageColor = {0,0,0,255}; ClutterActor *stage =…
joi
  • 307
  • 1
  • 2
  • 11
-1
votes
1 answer

Clutter 1.6. is slows down screen rendering for first time alone

We were using clutter to render the screen and process the GUI events on IMX31 board. The problem description :- On startup the buttons,texture will be loaded into memory. When we click any buttons then associated panel(ClutterGroup) will be…
-1
votes
1 answer

Evenly distributing actors in a container

I have a Box with a BindConstraint binding it to the width of the stage. I'd like to add actors and have them be evenly distributed across the width of the box. That is, I'd like the width of the actors to remain fixed, but the spacing between them…
Justin W
  • 2,077
  • 12
  • 17
1 2 3
10
11