diff options
author | Daniel Borca <dborca@users.sourceforge.net> | 2006-03-31 20:53:12 +0000 |
---|---|---|
committer | Daniel Borca <dborca@users.sourceforge.net> | 2006-03-31 20:53:12 +0000 |
commit | 3a3e63dc4fc8b34de7e61607d0d69cf3a77255ca (patch) | |
tree | 907e32056413613aabf43ffd2a9ef03a2b5fdb7b /include | |
parent | 3a46dff27d797f5ce067a305880ef1816e4a76d4 (diff) |
DMesa now uses OSMesa as a back-end.
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/dmesa.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/GL/dmesa.h b/include/GL/dmesa.h index e67b3426f9..358082e3ea 100644 --- a/include/GL/dmesa.h +++ b/include/GL/dmesa.h @@ -23,9 +23,9 @@ */ /* - * DOS/DJGPP device driver v1.7 for Mesa + * DOS/DJGPP device driver for Mesa * - * Copyright (C) 2002 - Daniel Borca + * Author: Daniel Borca * Email : dborca@users.sourceforge.net * Web : http://www.geocities.com/dborca */ @@ -35,7 +35,7 @@ #define DMESA_H_included #define DMESA_MAJOR_VERSION 6 -#define DMESA_MINOR_VERSION 3 +#define DMESA_MINOR_VERSION 5 /* Sample Usage: * @@ -138,7 +138,7 @@ void DMesaSetCI (int ndx, GLfloat red, GLfloat green, GLfloat blue); /* * DMesa functions */ -typedef void (*DMesaProc) (void); +typedef void (*DMesaProc) (); DMesaProc DMesaGetProcAddress (const char *name); /* @@ -149,8 +149,8 @@ DMesaProc DMesaGetProcAddress (const char *name); #define DMESA_GET_VIDEO_MODES 0x0300 #define DMESA_GET_BUFFER_ADDR 0x0400 -#define DMESA_DRIVER_SWDB_BIT 0x1 /* software double-buffered */ -#define DMESA_DRIVER_LLWO_BIT 0x2 /* lower-left window origin */ +#define DMESA_DRIVER_DBL_BIT 0x1 /* double-buffered */ +#define DMESA_DRIVER_YUP_BIT 0x2 /* lower-left window origin */ int DMesaGetIntegerv (GLenum pname, GLint *params); #ifdef __cplusplus |