Changeset 2660 for trunk/src


Ignore:
Timestamp:
Feb 5, 2000, 4:54:54 PM (26 years ago)
Author:
sandervl
Message:

removed OS2wgl apis

Location:
trunk/src/opengl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/opengl32.cpp

    r2595 r2660  
    1 /* $Id: opengl32.cpp,v 1.2 2000-02-01 19:41:55 sandervl Exp $ */
     1/* $Id: opengl32.cpp,v 1.3 2000-02-05 15:54:53 sandervl Exp $ */
    22/*****************************************************************************/
    33/*                                                                           */
     
    30283028/*****************************************************************************/
    30293029/*                                                                           */
    3030 /* Interface for opengl.cpp - resolve OS2xxx calls                           */
    3031 /*                                                                           */
    3032 /*****************************************************************************/
    3033 
    3034 int APIENTRY OS2wglChoosePixelFormat(HDC hdc,
    3035                                      PIXELFORMATDESCRIPTOR *p)
    3036 {
    3037   return wglChoosePixelFormat(hdc,p);
    3038 }
    3039 
    3040 int APIENTRY OS2wglSetPixelFormat(HDC hdc,
    3041                                   int iFormat,
    3042                                   PIXELFORMATDESCRIPTOR *p)
    3043 {
    3044   return wglSetPixelFormat(hdc,iFormat,p);
    3045 }
    3046 
    3047 int APIENTRY OS2wglGetPixelFormat(HDC hdc)
    3048 {
    3049   return wglGetPixelFormat(hdc);
    3050 }
    3051 
    3052 BOOL APIENTRY OS2wglSwapBuffers(HDC hdc)
    3053 {
    3054   return wglSwapBuffers(hdc);
    3055 }
    3056 
    3057 int APIENTRY OS2wglDescribePixelFormat(HDC hdc,
    3058                                        int iFormat,
    3059                                        UINT nBytes,
    3060                                        LPPIXELFORMATDESCRIPTOR p)
    3061 {
    3062   return wglDescribePixelFormat(hdc,iFormat,nBytes,p);
    3063 }
    3064 
    3065 /*****************************************************************************/
    3066 /*                                                                           */
    30673030/* Module Internal init and cleanup - called by initterm                     */
    30683031/*                                                                           */
  • trunk/src/opengl/opengl32.def

    r2595 r2660  
    1 ;/* $Id: opengl32.def,v 1.2 2000-02-01 19:41:56 sandervl Exp $ */
     1;/* $Id: opengl32.def,v 1.3 2000-02-05 15:54:54 sandervl Exp $ */
    22LIBRARY OPENGL32 INITINSTANCE
    33
     
    743743   wglUseFontOutlinesA=_wglUseFontOutlinesA@28  @367
    744744   wglUseFontOutlinesW=_wglUseFontOutlinesW@28  @368
    745    OS2wglChoosePixelFormat
    746    OS2wglSetPixelFormat
    747    OS2wglGetPixelFormat
    748    OS2wglSwapBuffers
    749    OS2wglDescribePixelFormat
Note: See TracChangeset for help on using the changeset viewer.