The openvg tag has no wiki summary.
0
votes
0answers
6 views
What's the difference between OpenVG Matrix Modes?
The OpenVG specification mentions four different types of matrix modes:
VG_MATRIX_PATH_USER_TO_SURFACE
VG_MATRIX_IMAGE_USER_TO_SURFACE
VG_MATRIX_FILL_PAINT_TO_USER
VG_MATRIX_STROKE_PAINT_TO_USER
...
1
vote
2answers
255 views
Painfully slow software vectors, particularly CoreGraphics vs. OpenGL
I'm working on an iOS app that requires drawing Bézier curves in real time in response to the user's input. At first, I decided to try using CoreGraphics, which has a fantastic vector drawing API. ...
0
votes
0answers
87 views
How to implement Qt/embedded OpenVG on EGL?
I would like to use Qt/embedded OpenVG. I would like to implement it on underlying EGL. But Qt document just gives a brief info of how to implement it http://doc.qt.digia.com/qt/openvg.html. Has ...
0
votes
0answers
65 views
VGImageFormat YUV
It was my understanding that OpenVG would support various YUV colour spaces but I am unclear on how this support works. Looking at VGImageFormat only RGB and greyscale modes appear to be supported. ...
1
vote
1answer
73 views
Accessing VGImage Data
Using OpenVG 1.1 I am trying to dump a VGImage to a file to confirm things are working but I am unsure how to access the raw RGBA data of the VGImage. Using vgReadPixels to capture the data to a char ...
1
vote
1answer
120 views
How to create global instance of objects that require a context?
I am attempting to write a C++ wrapper of OpenVG, which is very Open-GL like in its design.
here is a simple wrapper for a path handle:
class Path {
VGPath handle;
public:
Path() ...
-1
votes
1answer
310 views
Best current OpenVG implementation? [duplicate]
Possible Duplicate:
Best OpenVG implementation?
I am aware this is a duplicate of :
Best OpenVG implementation?
but the page hasn't been updated in 2 years.
Basically I'm looking for a ...
0
votes
0answers
120 views
which is better to work with openvg?? Eclipse or Microsoft Visual Studio?
Im new to openvg. I need to create an windows/linux application which should take inputs from user and draw 3D building. Can anybody suggest me whether to choose Visual studio or Eclipse?? If possible ...
0
votes
3answers
424 views
OpenVG and WebGL
Is there a JavaScript implementation of the OpenVG standard based on WebGL?
I'm pretty aware that we can render vector graphics in the browser, I'm just curious as to whether or not anyone has ...
1
vote
2answers
369 views
Display SVG on 3D planes using openGL
I have a requirement to draw different SVG files on respective 3D planes. For example, if I have two SVG files, I want to render them on two different 3D planes in openGL so that the planes can then ...
0
votes
1answer
209 views
OpenVG on wince: nothing painted on screen (example application Star.exe)
Has anyone got the openvg example (star.exe) running on a wince target successfully? I’ve tried it but failed – nothing was painted on screen except for an empty window. Below is what I’ve done for ...
1
vote
1answer
430 views
Efficient image scaling in Blackberry
How to scale image (Bitmap/EncodedImage) efficiently in Blackberry (using OpenVG/OpenGL if hardware acceleration supported). Can something like VGField/GLField be used to achieve that?
I have already ...
5
votes
2answers
2k views
What are the relations between EGL and OpenGL?
I'm writing an implementation for OpenVG and OpenGL|ES in Go, both of which depend on the Khronos EGL API, supposedly to ease portability I guess.
I'm writing an implementation of OpenVG on top of ...
0
votes
1answer
502 views
Rotated text with OpenVG
I've noticed that the OpenVG transformation matrix is ignored by the text rendering routine at all and I cannot control the text position with it manually with VG_GLYPH_ORIGIN parameter.
I'm ...
0
votes
1answer
193 views
Does Intel Atom support OpenVG?
Some time ago, I read some rumors on hardware implementation of OpenVG in Intel Atoms of a "new ganeration". Now I cannot find any evidence. So, is there at least some plans to support OpenVG at all?
2
votes
1answer
711 views
CoreGraphics Alternative?
I'm looking for a 2D rendering library as an alternative to CoreGraphics on iPhone. Everything in my app is pretty dynamic, which makes splitting things up into layers and animations rather hard.
I'm ...
5
votes
2answers
3k views
Easiest way to run a simple GLES/EGL/OpenVG app on a PC?
I thought this should be easy, but... geesh! A vendor gave me a fairly simple demo program meant to showcase some trivial icon animations. The target platform is an embedded system (MX51) with ...
1
vote
1answer
730 views
Is OpenVG supported by video card vendors?
Is OpenVG supported by nVidia, AMD and Intel in their drivers? Will it be supported in future? I'm really interested in some sort of HW-accelerated text and SVG rendering.
Regards,
23
votes
1answer
3k views
Hardware-accelerated OpenVG implementation on Desktop based on OpenGL ES
I'm currently trying to get OpenVG up and running on my desktop. The problem comes here: I am / will be developing an application for a Windows CE device (with .NET compact framework), which has ...
13
votes
5answers
11k views
Best OpenVG implementation? [closed]
Does anyone have any experience or knowledge of the OpenVG implementations that exist and which one(s) are the best? What I'm looking for is a highly stable, fast rendering implementations that is ...