73ff6900d0
* Makefile.am: * HACKING: Add with initial notes on coding bits and bobs. * clutter/clutter-behaviour-scale.c: Doc fixes. * clutter/clutter-event.c: (clutter_event_put): Doc fixes. * clutter/glx/clutter-stage-glx.c: Disable wm user resizing of stage (At least for now) Doc fixes.
16 lines
435 B
Plaintext
16 lines
435 B
Plaintext
General notes and rules on clutter core hacking;
|
|
|
|
- GNU style indentation, please wrap at 80 chars.
|
|
|
|
- All public functions with float parameters should also provide a fixed
|
|
point version.
|
|
|
|
- Propertys should always be float (never fixed).
|
|
|
|
- API funcs should always use g_return_*
|
|
|
|
- Really try to avoid if possible additions to clutter-private.h
|
|
|
|
- Dont add direct GL calls but wrap with cogl (also adding GL ES Version)
|
|
|