Tagged Questions

0
votes
0answers
11 views

Need plan of action to upgrade graphics toolkit in company’s applications

My job is to upgrade all of our applications that use OpenSceneGraph (an openGl toolkit) version 0.9.9 to the latest and greatest 2.8. Well quite a few caveats come with this task: 1.) After version …
1
vote
1answer
106 views

Game engine for augmented reality

Hi there, For an augmented reality project I want to display a high resolution live camera feed. Then in front of this I want to display a model than can be manipulated (translate, stretch, etc) in …
3
votes
3answers
280 views

Coordinate Transformation C++

Hello, I have a webcam pointed at a table at a slant and with it I track markers. I have a transformationMatrix in OpenSceneGraph and its translation part contains the relative coordinates from the …
11
votes
9answers
502 views

3D modeling for programmers

Hi, I'm studying Computer Graphics as part of my curriculum at my university. The course focuses on scene modeling, rather than rendering or other aspects of computer graphics. We're learning the …
0
votes
2answers
112 views

Disable texturing in OpenSceneGraph

I need to completely disable texturing in OSG. I tried glDisable(GL_TEXTURE_2D) and also using an osg::stateSet, but some nodes that have textures still render their textures. Is there any way to …
6
votes
4answers
901 views

In a multi-threaded C++ app, do I need a mutex to protect a simple boolean?

I have a multi-threaded C++ app which does 3D rendering with the OpenSceneGraph library. I'm planning to kick off OSG's render loop as a separate thread using boost::threads, passing a data structure …
0
votes
2answers
163 views

Invalid lock sequence error in an OpenSceneGraph application

I have an application that is built against OpenSceneGraph (2.6.1) and therefore indirectly OpenGL. The application initializes and begins to run, but then I get the following exception "attempt was …