trace opengl calls

  • Follow


Hi.
For debugging matters I want to trace OpenGL calls. They should be 
displayed in a window or written into a file.

	...
	glMatrixMode(GL_MODELVIEW);
	glLoadIdentity();
	glTranslatef(5., 5., 300.);
	glBegin(GL_POINTS);
	glVertex3d(0., 0., 0.);
	glEnd();
	...

Does anyone know an easy to use tool that is working under win32 and/or 
linux32?
Is there an possibility to do this using mesa3d?
Thanks a lot. Greets, Jan.
0
Reply Jan 7/4/2005 11:08:58 AM

"Jan Boehme" <aiscape@hotmail.com> schrieb im Newsbeitrag 
news:3isjmbFmojq6U1@individual.net...
> Hi.
> For debugging matters I want to trace OpenGL calls. They should be 
> displayed in a window or written into a file.
>
> ...
> glMatrixMode(GL_MODELVIEW);
> glLoadIdentity();
> glTranslatef(5., 5., 300.);
> glBegin(GL_POINTS);
> glVertex3d(0., 0., 0.);
> glEnd();
> ...
>
> Does anyone know an easy to use tool that is working under win32 
> and/or linux32?
> Is there an possibility to do this using mesa3d?
> Thanks a lot. Greets, Jan.

http://www.hawksoft.com/gltrace/



0
Reply Gernot 7/4/2005 1:04:37 PM


"Jan Boehme" <aiscape@hotmail.com> wrote in message 
news:3isjmbFmojq6U1@individual.net...
> Hi.
> For debugging matters I want to trace OpenGL calls. They should be 
> displayed in a window or written into a file.
>
> ...
> glMatrixMode(GL_MODELVIEW);
> glLoadIdentity();
> glTranslatef(5., 5., 300.);
> glBegin(GL_POINTS);
> glVertex3d(0., 0., 0.);
> glEnd();
> ...
>
> Does anyone know an easy to use tool that is working under win32 and/or 
> linux32?
> Is there an possibility to do this using mesa3d?
> Thanks a lot. Greets, Jan.

You might like to check out gDebugger at http://www.gremedy.com/

Cheers
Chris 


0
Reply Chris 7/5/2005 3:32:08 PM

 > For debugging matters I want to trace OpenGL calls. They should be
 > displayed in a window or written into a file.

These are IMHO the best *free* utilities for that purpose:

http://glintercept.nutty.org/
http://www.glsurveyor.com/

-- 
Sebastian Schuberth
(Remove "NOSP" and "M" from my e-mail address)
0
Reply Sebastian 7/9/2005 11:34:06 AM

3 Replies
217 Views

(page loaded in 0.051 seconds)

Similiar Articles:













7/27/2012 7:15:41 PM


Reply: