mutter/examples
Robert Bragg 54735dec84 Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.

Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.

Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.

So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.

Instead of gsize we now use size_t

For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.

Reviewed-by: Neil Roberts <neil@linux.intel.com>

(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-08-06 14:27:39 +01:00
..
android/hello android: Update the hello example to the latest glib-android API change 2011-08-12 17:24:19 +01:00
cogl-crate.c Switch use of primitive glib types to c99 equivalents 2012-08-06 14:27:39 +01:00
cogl-hello.c Switch use of primitive glib types to c99 equivalents 2012-08-06 14:27:39 +01:00
cogl-info.c cogl-info: print out the chosen renderer name 2012-01-16 18:27:19 +00:00
cogl-msaa.c Switch use of primitive glib types to c99 equivalents 2012-08-06 14:27:39 +01:00
cogl-sdl-hello.c Switch use of primitive glib types to c99 equivalents 2012-08-06 14:27:39 +01:00
cogl-x11-foreign.c Switch use of primitive glib types to c99 equivalents 2012-08-06 14:27:39 +01:00
cogl-x11-tfp.c Switch use of primitive glib types to c99 equivalents 2012-08-06 14:27:39 +01:00
cogland.c Switch use of primitive glib types to c99 equivalents 2012-08-06 14:27:39 +01:00
crate.jpg Adds another example that draws a 3D crate 2011-06-30 14:33:11 +01:00
Makefile.am Add an example combining SDL and Cogl 2011-12-14 16:45:24 +00:00