Browse Source

applied Eero Pajarre's patch for Windows

tags/mesa_3_3
Brian Paul 25 years ago
parent
commit
1e0163272b
1 changed files with 9 additions and 4 deletions
  1. 9
    4
      src/mesa/main/glheader.h

+ 9
- 4
src/mesa/main/glheader.h View File

@@ -1,4 +1,4 @@
/* $Id: glheader.h,v 1.9 2000/05/22 19:41:34 brianp Exp $ */
/* $Id: glheader.h,v 1.10 2000/05/26 15:52:06 brianp Exp $ */

/*
* Mesa 3-D graphics library
@@ -63,9 +63,6 @@
#include "conf.h"
#endif

/* Make sure we include glext.h */
#include "GL/gl.h"
#include "GL/glext.h"



@@ -133,7 +130,9 @@
/* compatability guard so we don't need to change client code */

#if defined(_WIN32) && !defined(_WINDEF_) && !defined(_GNU_H_WINDOWS32_BASE) && !defined(OPENSTEP)
#if 0
# define CALLBACK GLCALLBACK
#endif
typedef int (GLAPIENTRY *PROC)();
typedef void *HGLRC;
typedef void *HDC;
@@ -161,6 +160,12 @@ typedef struct tagPIXELFORMATDESCRIPTOR PIXELFORMATDESCRIPTOR, *PPIXELFORMATDESC



/* Make sure we include glext.h */
#include "GL/gl.h"
#include "GL/glext.h"



/* Disable unreachable code warnings for Watcom C++ */
#ifdef __WATCOMC__
#pragma disable_message(201)

Loading…
Cancel
Save