OldSchoolHack

Register / Login English

[GUI] wie Sie mit OpenGL32 Drawing

icon Thread: [Help] [GUI] wie Sie mit OpenGL32 Drawing

Join Date: Jul 2013

Posts: 5

TEXT Code:
  1. #include <d3dx9.h>
  2. #include "GUI/OSHGui.hpp"
  3. #include "GUI/Input/WindowsMessage.hpp"
  4. #include "GUI/Drawing/OpenGL/RendererOpenGL.hpp"
  5. #include "GUI/form1.hpp"


TEXT Code:
  1. void APIENTRY Hooked_glBegin( GLenum mode )
  2. {
  3. // was ist der Code ???
  4. (*pglBegin)( mode );
  5. }
  6.  

TEXT Code:
  1. void APIENTRY Hooked_glEnd( void )
  2. {
  3. // was ist der Code ???
  4. (*pglEnd)();
  5. }