diff options
author | Brian Paul <[email protected]> | 2013-04-09 18:43:40 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-04-09 18:43:40 -0600 |
commit | b74b510d64bc33ef36cbc02952611f847ac7f123 (patch) | |
tree | c240427f9f8d9a2ffee3edca58609753450fbc27 /src | |
parent | c04e0b9f4bb1fa00f6bb56e64f8c9dcf8b45ebb7 (diff) |
st/mesa: remove #if FEATURE_GL/ES tests
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/state_tracker/st_manager.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/state_tracker/st_manager.c b/src/mesa/state_tracker/st_manager.c index 03e086a72cd..ff52aa1f9b5 100644 --- a/src/mesa/state_tracker/st_manager.c +++ b/src/mesa/state_tracker/st_manager.c @@ -28,7 +28,6 @@ #include "main/mtypes.h" #include "main/context.h" -#include "main/mfeatures.h" #include "main/texobj.h" #include "main/teximage.h" #include "main/texstate.h" @@ -884,16 +883,10 @@ st_manager_add_color_renderbuffer(struct st_context *st, static const struct st_api st_gl_api = { "Mesa " PACKAGE_VERSION, ST_API_OPENGL, -#if FEATURE_GL ST_PROFILE_DEFAULT_MASK | ST_PROFILE_OPENGL_CORE_MASK | -#endif -#if FEATURE_ES1 ST_PROFILE_OPENGL_ES1_MASK | -#endif -#if FEATURE_ES2 ST_PROFILE_OPENGL_ES2_MASK | -#endif 0, ST_API_FEATURE_MS_VISUALS_MASK, st_api_destroy, |