Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use Vector graphics in an OpenGL game. I want to use vector graphics because they can be scaled cheaply without loss of quality.

Of course, the drawing should be hardware accelerated, so I do not want to draw in software to a texture.

Now I am wondering if a library doing this already exists. Is there a library, that can load some vector graphic format and display it using OpenGL?

THanks! Nathan

share|improve this question
possible duplicate of 2D vector modelling for game development – Josh Lee Oct 29 '10 at 18:08
Unless the author wants OpenGL + 2D vector graphics at the same time. – tibur Oct 29 '10 at 18:21
Let me try to clarify what I want. I want to load a vector graphic file (i.E. SVG), do my normal OpenGL calls mixed with a call to draw the vector graphic file. I admit, the other thread answers these partially. – Nathan Oct 29 '10 at 19:16

2 Answers

Take a look at OpenVG.

share|improve this answer
Thanks. OpenVG seems cool. But I am a bit confused. It is only a standard, not an library, right? Does a (open source) hardwar accelerated implementation exist for Linux and windows? – Nathan Oct 29 '10 at 19:04
Well. I thought that there was an Nvidia implementation. Look at this thread: Best OpenVG implementation?. – tibur Oct 29 '10 at 20:22

Lots of discussion in this Slashdot post about renderers for SVG. I don't know which of them using OpenGL, if any.

This SO question also has several suggestions, including sauvage which is done in Python. Cairo is also apparently a possibility.

There are several powerful libraries that render SVG without OpenGL. I wonder if it's not really that necessary: maybe drawing lines is already accelerated enough on most systems' graphics cards.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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