mesa/main: delete now unused _mesa_little_endian

Reviewed-by: Eric Engestrom <eric@engestrom.ch>
This commit is contained in:
Dylan Baker 2018-09-06 15:15:40 -07:00
parent f73a9c6586
commit 39b9fe03a9
1 changed files with 0 additions and 12 deletions

View File

@ -285,18 +285,6 @@ _mesa_logbase2(GLuint n)
}
/**
* Return 1 if this is a little endian machine, 0 if big endian.
*/
static inline GLboolean
_mesa_little_endian(void)
{
const GLuint ui = 1; /* intentionally not static */
return *((const GLubyte *) &ui);
}
/**********************************************************************
* Functions
*/