1

Is there a way to prevent apitrace from dumping OpenGL calls?

Currently the apitrace can dump everything, is there a way to stop it for release version?

Amit Verma
  • 40,709
  • 21
  • 93
  • 115
emailhy
  • 780
  • 9
  • 22

1 Answers1

3

No.

There is no reasonable way to do that. OpenGL is usually implemented just as a dynamic library, and one can always exchange that or hook on every function call. That is also not limited to GL.

derhass
  • 43,833
  • 2
  • 57
  • 78