summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/es1_conversion.c
diff options
context:
space:
mode:
authorPaul Berry <stereotype441@gmail.com>2012-10-30 14:03:28 -0700
committerPaul Berry <stereotype441@gmail.com>2012-11-06 12:57:39 -0800
commit5708e2711366e4dd1f19275c943b04706fd9c633 (patch)
tree2d937547be5bab79c2024924bd0d4d9dc82c2ca4 /src/mesa/main/es1_conversion.c
parent0d61f879a1f2e6bb37368731a29d5267e1c25195 (diff)
downloadexternal_mesa3d-5708e2711366e4dd1f19275c943b04706fd9c633.zip
external_mesa3d-5708e2711366e4dd1f19275c943b04706fd9c633.tar.gz
external_mesa3d-5708e2711366e4dd1f19275c943b04706fd9c633.tar.bz2
dispatch: Remove a few FEATURE_ES1 conditionals.
This allows the GLES1.1 dispatch sanity test to be run on all builds, even builds that do not include GLES1 support. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/main/es1_conversion.c')
-rw-r--r--src/mesa/main/es1_conversion.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/main/es1_conversion.c b/src/mesa/main/es1_conversion.c
index 758fb1a..993147c 100644
--- a/src/mesa/main/es1_conversion.c
+++ b/src/mesa/main/es1_conversion.c
@@ -1,8 +1,6 @@
#include <stdbool.h>
#include "main/mfeatures.h"
-#if FEATURE_ES1
-
#include "api_loopback.h"
#include "api_exec.h"
#include "blend.h"
@@ -938,5 +936,3 @@ _es_Translatex(GLfixed x, GLfixed y, GLfixed z)
(GLfloat) (y / 65536.0f),
(GLfloat) (z / 65536.0f));
}
-
-#endif /* FEATURE_ES1 */