~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/color.h

  • Committer: kidproto
  • Date: 2006-08-25 07:03:19 UTC
  • Revision ID: kidproto@users.sourceforge.net-20060825070319-49nso3fdlwuveifv
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
 
65
65
void sp_color_copy (SPColor *dst, const SPColor *src);
66
66
 
67
 
bool sp_color_is_equal (const SPColor *c0, const SPColor *c1);
68
 
bool sp_color_is_close (const SPColor *c0, const SPColor *c1, float epsilon);
 
67
gboolean sp_color_is_equal (const SPColor *c0, const SPColor *c1);
 
68
gboolean sp_color_is_close (const SPColor *c0, const SPColor *c1, float epsilon);
69
69
 
70
70
void sp_color_set_rgb_float (SPColor *color, float r, float g, float b);
71
71
void sp_color_set_rgb_rgba32 (SPColor *color, guint32 value);