Changeset 84

Show
Ignore:
Timestamp:
02/16/05 19:14:41 (4 years ago)
Author:
jjr
Message:

Correct glu.d: libGLU.so -> libGLU.so
Correct gl.d: libGL.so -> libGL.so
Correct glx.d: Several symbols incorrectly entered. Fixed.

Tested glx.d: all symbols now load dynamically on Linux


Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/DerelictGL/derelict/opengl/gl.d

    r82 r84  
    5353        DerelictGL_Load("opengl32.dll"); 
    5454    version(linux) 
    55         DerelictGL_Load("libgl.so"); 
     55        DerelictGL_Load("libGL.so"); 
    5656} 
    5757 
  • trunk/DerelictGL/derelict/opengl/glx.d

    r82 r84  
    373373    glXGetCurrentContext = cast(pfglXGetCurrentContext) getProc("glXGetCurrentContext"); 
    374374    glXGetCurrentDrawable = cast(pfglXGetCurrentDrawable) getProc("glXGetCurrentDrawable"); 
    375     glXIsDirect = cast(pfglXIsDirect) getProc("pfglXIsDirect"); 
     375    glXIsDirect = cast(pfglXIsDirect) getProc("glXIsDirect"); 
    376376    glXMakeCurrent = cast(pfglXMakeCurrent) getProc("glXMakeCurrent"); 
    377377    glXQueryExtension = cast(pfglXQueryExtension) getProc("glXQueryExtension"); 
     
    387387    glXGetFBConfigs = cast(pfglXGetFBConfigs) getProc("glXGetFBConfigs"); 
    388388    glXChooseFBConfig = cast(pfglXChooseFBConfig) getProc("glXChooseFBConfig"); 
    389     glXGetFBConfigAttrib = cast(pfglXGetFBConfigAttrib) getProc("glXGetFBConfigATtrib"); 
     389    glXGetFBConfigAttrib = cast(pfglXGetFBConfigAttrib) getProc("glXGetFBConfigAttrib"); 
    390390    glXGetVisualFromFBConfig = cast(pfglXGetVisualFromFBConfig) getProc("glXGetVisualFromFBConfig"); 
    391391    glXCreateWindow = cast(pfglXCreateWindow) getProc("glXCreateWindow"); 
  • trunk/DerelictGLU/derelict/opengl/glu.d

    r80 r84  
    127127        DerelictGLU_Load("glu32.dll"); 
    128128    version(linux) 
    129         DerelictGLU_Load("libglu.so"); 
     129        DerelictGLU_Load("libGLU.so"); 
    130130} 
    131131