vote up 1 vote down star

Hi SO Friends,

I am working on embedded linux, Is there any open source 2D renderer available which can draw on memory, scanline based, complete fixed-point support.

I work in c or cpp programming language.

I know one with which satisfy my all needs that is, Google Skia which google uses in android and chrome, But I found it without documentation, not straight-forward compilable, not straight-forward usable in 3rd party projects.

Regards, Sunny.

flag

Do you have a CPU planed for this project? – eaanon01 Oct 3 at 9:17

4 Answers

vote up 3 vote down check

Checkout Cairo. I am not sure what you mean by "complete fixed-point support" but other than that it seems to meet your requirements.

link|flag
kdubb, complete fixed point support means no floating point operations, all floating point operations replaced with integer operations with limited accuracy. – Sunny Shah Sep 28 at 6:31
glad to give you first UP. :-) Welcome to SO. – Sunny Shah Sep 28 at 6:33
1  
Although the public API uses double, internally cairo is 24.8 fixed point since version 1.5.12. – ntd Oct 10 at 22:53
vote up 1 vote down

Allegro is a games library which includes extensive software rendering, most of which does not rely on floating point. Additionally it has some trig functions and maths functions which work on fixed-point. It has things like sprite-rotation which don't need floating point.

link|flag
Thanks, May I have there any reference or tutorial to learn it, which you found helpful? – Sunny Shah Oct 7 at 11:42
1  
It's all linked from the above site. You're going to be more or less on your own compiling for an embedded platform though; the community is pretty helpful however. – MarkR Oct 8 at 6:29
vote up 1 vote down

Don't know if it's what you're looking for, but there's libcrtxy http://libcrtxy.sourceforge.net/

link|flag
vote up 0 vote down

DirectFB.

If you want hardware acceleration , directFB is the most portable way to go.

link|flag
But does it uses Fixed Point ? – Sunny Shah Sep 28 at 8:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.