Hi Praveen Felix, It's not a bug, in fact, the order of parameters is correct in the sample_apps, obviously the clutter development package in the moblin v2 developer image did not include the latest clutter-0.9, and you could check the latest clutter API in http://www.clutter-project.org/docs/clutter/0.9/, http://www.clutter-project.org/docs/clutter/0.9/clutter-Colors.html#clutter-color-shade
Best Regards, Tonny -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Praveen Felix Sent: Friday, April 24, 2009 1:04 PM To: [email protected] Subject: Re: [Moblin Dev] Problem in installing Sample Clutter Application Thanks everyone... PROBLEM SOLVEDIt was the problem of moblin image. I was using the test drive image instead of developer image. I was able to solve the package related issue using the developer image. For the Clutter Sample Application source downloaded from the git:// git.moblin.org/sample_apps.git I came across a bug. I had to make the following changes to compile the helloworld.c source file successfully. In src/helloworld.c file make the following changes for the file: Line 118: clutter_color_shade (orig_color, scale, &c); Change the above line to clutter_color_shade (orig_color, &c, scale); -- Praveen Felix _______________________________________________ Moblin dev Mailing List [email protected] To manage or unsubscribe from this mailing list visit: https://lists.moblin.org/mailman/listinfo/dev or your user account on http://moblin.org once logged in. For more information on the Moblin Developer Mailing lists visit: http://moblin.org/community/mailing-lists _______________________________________________ Moblin dev Mailing List [email protected] To manage or unsubscribe from this mailing list visit: https://lists.moblin.org/mailman/listinfo/dev or your user account on http://moblin.org once logged in. For more information on the Moblin Developer Mailing lists visit: http://moblin.org/community/mailing-lists
