summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-02-26 18:01:36 -0700
committerBrian Paul <brianp@vmware.com>2013-02-26 18:01:39 -0700
commitcedcf42c3f4190624d82db002473ad34da5f2610 (patch)
tree712c2cd0d1a53b05c4b8633a01a09a1a25003d90
parentcc39ab9818bcb9dd540f779003cfc9fe9a1ce474 (diff)
egl-static: remove FEATURE_GL/ES1/ES2 checks
This patch should be squashed with the previous one before merging to master.
-rw-r--r--src/gallium/targets/egl-static/egl_st.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/targets/egl-static/egl_st.c b/src/gallium/targets/egl-static/egl_st.c
index cc153321b4..0d14521399 100644
--- a/src/gallium/targets/egl-static/egl_st.c
+++ b/src/gallium/targets/egl-static/egl_st.c
@@ -169,15 +169,9 @@ egl_st_get_profile_mask(enum st_api_type api)
switch (api) {
case ST_API_OPENGL:
-#if FEATURE_GL
mask |= ST_PROFILE_DEFAULT_MASK;
-#endif
-#if FEATURE_ES1
mask |= ST_PROFILE_OPENGL_ES1_MASK;
-#endif
-#if FEATURE_ES2
mask |= ST_PROFILE_OPENGL_ES2_MASK;
-#endif
break;
case ST_API_OPENVG:
#if FEATURE_VG