User Activity

  • Posted a comment on discussion Open Discussion on Anti-Grain Geometry Library

    When I made my initial comment I hadn't reviewed all the code to see the uses of the tags variable. I just thought that doing an explicit cast on a couple of lines could cause problems if a FreeType method was invoked passing tags as a parameter, since, depending on the version, errors could be generated. I prefer the #if/#endif block solution as it leaves the code cleaner even though I hate this type of macro solutions. Thank you.

  • Posted a comment on discussion Open Discussion on Anti-Grain Geometry Library

    I have not tested but I would expect a compiler complain: error: invalid conversion from ‘unsigned char*’ to ‘char*’ [-fpermissive] or error: invalid conversion from ‘char*’ to ‘unsigned char*’ [-fpermissive] depending on agg/FreeType parameters combination.

  • Modified a comment on discussion Open Discussion on Anti-Grain Geometry Library

    If agg is linked with a previous version of FreeType there is now a problem. r402 should be reverted and fixed with something as: // Freetype version 2.13.3 and later uses unsigned char for tags #if (FREETYPE_MAJOR > 2) || (FREETYPE_MAJOR == 2 && FREETYPE_MINOR > 13) || (FREETYPE_MAJOR == 2 && FREETYPE_MINOR == 13 && FREETYPE_PATCH >= 3) unsigned char* tags; #else char* tags; #endif

  • Posted a comment on discussion Open Discussion on Anti-Grain Geometry Library

    If agg is linked with a previous version of FreeType there is now a problem. r402 should be reverted and fixed with something as: ~~~ // Freetype version 2.13.3 and later uses unsigned char for tags if (FREETYPE_MAJOR > 2) || (FREETYPE_MAJOR == 2 && FREETYPE_MINOR > 13) || (FREETYPE_MAJOR == 2 && FREETYPE_MINOR == 13 && FREETYPE_PATCH >= 3) unsigned char* tags; else char* tags; endif

  • Posted a comment on ticket #25669 on SourceForge Support

    This can be closed. Thank you

  • Posted a comment on ticket #25669 on SourceForge Support

    Thank you very much for your help. Now I understand the empty folders behaviour. And thank you for pointing me to the problem. I will review my code.

  • Created ticket #25669 on SourceForge Support

    Project webpage doesn't work

  • Created a blog post on LenMus

    Release of LenMus Phonascus version 6.0.0

View All

Personal Data

Username:
cecilios
Joined:
2005-08-29 10:33:34

Projects

This is a list of open source software projects that cecilio is associated with:

Personal Tools

MongoDB Logo MongoDB