diff options
author | Oliver McFadden <[email protected]> | 2012-09-11 11:13:07 +0300 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2012-09-15 12:57:49 +0300 |
commit | dda982f1a7f1b8f525894e01975e69b262696153 (patch) | |
tree | a3be7cd2da9af379822994613782f8250dffeab1 /src/mesa/main/dlist.c | |
parent | 88233b0bc301eb0ccdf23ffcb0245b3faad43b04 (diff) |
mesa: remove FEATURE_EXT_transform_feedback define.
Signed-off-by: Oliver McFadden <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index fdc70b5adb9..bec8ff1553b 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -66,9 +66,7 @@ #include "varray.h" #include "arbprogram.h" #include "nvprogram.h" -#if FEATURE_EXT_transform_feedback #include "transformfeedback.h" -#endif #include "math/m_matrix.h" @@ -10522,7 +10520,6 @@ _mesa_create_save_table(void) (void) save_Uniform4uiv; #endif -#if FEATURE_EXT_transform_feedback /* These are not compiled into display lists: */ SET_BindBufferBaseEXT(table, _mesa_BindBufferBase); SET_BindBufferOffsetEXT(table, _mesa_BindBufferOffsetEXT); @@ -10542,7 +10539,6 @@ _mesa_create_save_table(void) save_DrawTransformFeedbackStreamInstanced); SET_BeginQueryIndexed(table, save_BeginQueryIndexed); SET_EndQueryIndexed(table, save_EndQueryIndexed); -#endif /* GL_ARB_instanced_arrays */ SET_VertexAttribDivisorARB(table, save_VertexAttribDivisor); |