diff options
author | Kristian Høgsberg <[email protected]> | 2007-11-06 13:32:04 -0500 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2007-11-06 13:32:33 -0500 |
commit | 001de0ac4e9ccd5c440dca4a2994deca668a2d9f (patch) | |
tree | 3bc08b2fd06a6047cf754a4ee5badc59358d57a2 /src/glx/x11/glcontextmodes.h | |
parent | 866d271aa848d33dfded4989c48ba46108d6cceb (diff) |
Remove a couple of "deprecated" fields from __GLXcontextRec.
The __GLXcontextRec struct is internal to the libGL implementation. No point
in "deprecating", just get rid of it.
Diffstat (limited to 'src/glx/x11/glcontextmodes.h')
-rw-r--r-- | src/glx/x11/glcontextmodes.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/glx/x11/glcontextmodes.h b/src/glx/x11/glcontextmodes.h index 4b5c6f68b8f..afd09cd7fbd 100644 --- a/src/glx/x11/glcontextmodes.h +++ b/src/glx/x11/glcontextmodes.h @@ -44,8 +44,10 @@ extern int _gl_get_context_mode_data( const __GLcontextModes *mode, extern __GLcontextModes * _gl_context_modes_create( unsigned count, size_t minimum_size ); extern void _gl_context_modes_destroy( __GLcontextModes * modes ); -extern __GLcontextModes * _gl_context_modes_find_visual( - __GLcontextModes * modes, int vid ); +extern __GLcontextModes * + _gl_context_modes_find_visual(__GLcontextModes *modes, int vid); +extern __GLcontextModes * + _gl_context_modes_find_fbconfig(__GLcontextModes *modes, int fbid); extern GLboolean _gl_context_modes_are_same( const __GLcontextModes * a, const __GLcontextModes * b ); |