Passthrough dll

Started by
1 comment, last by Red Nut 22 years, 7 months ago
Hi Can somone please tell me what an opengl passthrough dll or gl wrapper is?
Advertisement
A passthrough or wrapper Dll is a Dll that exposes all the functions of another Dll, and when a function is called, it passes the parameters on to that other Dll.

This is usefull when you need to see which calls are being made to a system Dll, since the passthrough Dll can log all calls or even change some parameters if needed. You could for example add parameters to OpenGL calls to make all polygons transparent, which could be usefull for debugging (Or cheating).
- Mort
oh ok thank you!

This topic is closed to new replies.

Advertisement