From: Brian Paul Date: Wed, 11 Mar 2015 23:10:53 +0000 (-0600) Subject: tnl: HAVE_LE32_VERTS is never defined, remove associated code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=48b0a3c1c9d829a9b1d401afb2796b35df94a5d7;p=mesa.git tnl: HAVE_LE32_VERTS is never defined, remove associated code Reviewed-by: Matt Turner --- diff --git a/src/mesa/tnl_dd/t_dd_triemit.h b/src/mesa/tnl_dd/t_dd_triemit.h index 39c9d26481b..082e83f407b 100644 --- a/src/mesa/tnl_dd/t_dd_triemit.h +++ b/src/mesa/tnl_dd/t_dd_triemit.h @@ -16,13 +16,6 @@ do { \ "D" ((long)vb), \ "S" ((long)v) ); \ } while (0) -#elif defined(HAVE_LE32_VERTS) -#define COPY_DWORDS( j, vb, vertsize, v ) \ -do { \ - for ( j = 0 ; j < vertsize ; j++ ) \ - vb[j] = CPU_TO_LE32(((GLuint *)v)[j]); \ - vb += vertsize; \ -} while (0) #else #define COPY_DWORDS( j, vb, vertsize, v ) \ do { \