Changeset 84
- Timestamp:
- 02/16/05 19:14:41 (4 years ago)
- Files:
-
- trunk/DerelictGL/derelict/opengl/gl.d (modified) (1 diff)
- trunk/DerelictGL/derelict/opengl/glx.d (modified) (2 diffs)
- trunk/DerelictGLU/derelict/opengl/glu.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/DerelictGL/derelict/opengl/gl.d
r82 r84 53 53 DerelictGL_Load("opengl32.dll"); 54 54 version(linux) 55 DerelictGL_Load("lib gl.so");55 DerelictGL_Load("libGL.so"); 56 56 } 57 57 trunk/DerelictGL/derelict/opengl/glx.d
r82 r84 373 373 glXGetCurrentContext = cast(pfglXGetCurrentContext) getProc("glXGetCurrentContext"); 374 374 glXGetCurrentDrawable = cast(pfglXGetCurrentDrawable) getProc("glXGetCurrentDrawable"); 375 glXIsDirect = cast(pfglXIsDirect) getProc(" pfglXIsDirect");375 glXIsDirect = cast(pfglXIsDirect) getProc("glXIsDirect"); 376 376 glXMakeCurrent = cast(pfglXMakeCurrent) getProc("glXMakeCurrent"); 377 377 glXQueryExtension = cast(pfglXQueryExtension) getProc("glXQueryExtension"); … … 387 387 glXGetFBConfigs = cast(pfglXGetFBConfigs) getProc("glXGetFBConfigs"); 388 388 glXChooseFBConfig = cast(pfglXChooseFBConfig) getProc("glXChooseFBConfig"); 389 glXGetFBConfigAttrib = cast(pfglXGetFBConfigAttrib) getProc("glXGetFBConfigA Ttrib");389 glXGetFBConfigAttrib = cast(pfglXGetFBConfigAttrib) getProc("glXGetFBConfigAttrib"); 390 390 glXGetVisualFromFBConfig = cast(pfglXGetVisualFromFBConfig) getProc("glXGetVisualFromFBConfig"); 391 391 glXCreateWindow = cast(pfglXCreateWindow) getProc("glXCreateWindow"); trunk/DerelictGLU/derelict/opengl/glu.d
r80 r84 127 127 DerelictGLU_Load("glu32.dll"); 128 128 version(linux) 129 DerelictGLU_Load("lib glu.so");129 DerelictGLU_Load("libGLU.so"); 130 130 } 131 131
