diff options
author | Oliver McFadden <[email protected]> | 2012-09-11 11:16:59 +0300 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2012-09-15 12:57:55 +0300 |
commit | ab1a9430c3a4c2ec52e0dbb969a01165dd33ce4b (patch) | |
tree | e1e4e1792a997006ee82a174872c43d22ced8b42 /src/mesa/main/mfeatures.h | |
parent | 961fcc45adab2e803e45c4e1d8e5b9f1a36b4b18 (diff) |
mesa: remove obsolete comments from mfeatures.h
Signed-off-by: Oliver McFadden <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/mfeatures.h')
-rw-r--r-- | src/mesa/main/mfeatures.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/mesa/main/mfeatures.h b/src/mesa/main/mfeatures.h index 36724bdb81a..3162a0bbf9b 100644 --- a/src/mesa/main/mfeatures.h +++ b/src/mesa/main/mfeatures.h @@ -31,7 +31,6 @@ #ifndef FEATURES_H #define FEATURES_H - #ifndef _HAVE_FULL_GL #define _HAVE_FULL_GL 1 #endif @@ -39,32 +38,6 @@ /* assert that a feature is disabled and should never be used */ #define ASSERT_NO_FEATURE() ASSERT(0) -/** - * A feature can be anything. But most of them share certain characteristics. - * - * When a feature defines vtxfmt entries, they can be initialized and - * installed by - * _MESA_INIT_<FEATURE>_VTXFMT - * _mesa_install_<feature>_vtxfmt - * - * When a feature defines dispatch entries, they are initialized by - * _mesa_init_<feature>_dispatch - * - * When a feature has states, they are initialized and freed by - * _mesa_init_<feature> - * _mesa_free_<feature>_data - * - * Except for states, the others compile to no-op when a feature is disabled. - * - * The GLAPIENTRYs and helper functions defined by a feature should also - * compile to no-op when it is disabled. But to save typings and to catch - * bugs, some of them may be unavailable, or compile to ASSERT_NO_FEATURE() - * when the feature is disabled. - * - * A feature following the conventions may be used without knowing if it is - * enabled or not. - */ - #ifndef FEATURE_ES1 #define FEATURE_ES1 0 #endif |