diff options
author | Brian Paul <[email protected]> | 2004-09-10 00:45:12 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-09-10 00:45:12 +0000 |
commit | 253204f9f0a1942a65e45d876f8d5f16d1a196a1 (patch) | |
tree | 0df0d502ad53bae86b479dbedd2b5bf9789d6878 /src/mesa/glapi | |
parent | 7e5c452efbee3f4df406d3c702e25c1d02285971 (diff) |
More updates for Doxygen.
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r-- | src/mesa/glapi/glapi.h | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/src/mesa/glapi/glapi.h b/src/mesa/glapi/glapi.h index 41d7aaf0287..32cd2c812ad 100644 --- a/src/mesa/glapi/glapi.h +++ b/src/mesa/glapi/glapi.h @@ -1,9 +1,8 @@ - /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 6.2 * - * Copyright (C) 1999-2001 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"), @@ -24,6 +23,24 @@ */ +/** + * \mainpage Mesa GL API Module + * + * \section GLAPIIntroduction Introduction + * + * The Mesa GL API module is responsible for dispatching all the + * gl*() functions. All GL functions are dispatched by jumping through + * the current dispatch table (basically a struct full of function + * pointers.) + * + * A per-thread current dispatch table and per-thread current context + * pointer are managed by this module too. + * + * This module is intended to be non-Mesa-specific so it can be used + * with the X/DRI libGL also. + */ + + #ifndef _GLAPI_H #define _GLAPI_H |