diff options
author | Daniel Borca <[email protected]> | 2004-01-23 15:57:52 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-01-23 15:57:52 +0000 |
commit | 3d06dc75816ef7f1c6e2c3f24a98dd2934c4c385 (patch) | |
tree | 74e43e286b3d3d947e58f73bd0a69b4a6d4aeaaf /include | |
parent | 3abf746a7eae52220485cd031aecec2ca9e6103e (diff) |
accomodated new driver_func initialization
added DMesaGetProcAddress
some other minor fixes
updated documentation
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/dmesa.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/include/GL/dmesa.h b/include/GL/dmesa.h index 364792ac1ab..e67e54aad15 100644 --- a/include/GL/dmesa.h +++ b/include/GL/dmesa.h @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 5.0 + * Version: 6.1 * - * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ */ /* - * DOS/DJGPP device driver v1.5 for Mesa + * DOS/DJGPP device driver v1.6 for Mesa * * Copyright (C) 2002 - Borca Daniel * Email : [email protected] @@ -34,8 +34,8 @@ #ifndef DMESA_H_included #define DMESA_H_included -#define DMESA_MAJOR_VERSION 5 -#define DMESA_MINOR_VERSION 0 +#define DMESA_MAJOR_VERSION 6 +#define DMESA_MINOR_VERSION 1 /* Sample Usage: * @@ -131,6 +131,11 @@ GLboolean DMesaResizeBuffer (GLint width, GLint height); void DMesaSetCI (int ndx, GLfloat red, GLfloat green, GLfloat blue); /* + * DMesa functions + */ +void *DMesaGetProcAddress (const char *name); + +/* * DMesa state retrieval. */ #define DMESA_GET_SCREEN_SIZE 0x0100 |