summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/r300_texstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_texstate.c')
-rw-r--r--src/mesa/drivers/dri/r300/r300_texstate.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_texstate.c b/src/mesa/drivers/dri/r300/r300_texstate.c
index 791427a6ab..1d78918a2b 100644
--- a/src/mesa/drivers/dri/r300/r300_texstate.c
+++ b/src/mesa/drivers/dri/r300/r300_texstate.c
@@ -172,18 +172,16 @@ static void r300SetTexImages(r300ContextPtr rmesa,
GLint numLevels;
GLint log2Width, log2Height, log2Depth;
const GLuint ui = 1;
- const GLubyte littleEndian = *((const GLubyte *) &ui);
/* Set the hardware texture format
*/
if (VALID_FORMAT(baseImage->TexFormat->MesaFormat)) {
- if (littleEndian) {
+ if (_mesa_little_endian()) {
t->format =
tx_table_le[baseImage->TexFormat->MesaFormat].format;
t->filter |=
tx_table_le[baseImage->TexFormat->MesaFormat].filter;
- }
- else {
+ } else {
t->format =
tx_table_be[baseImage->TexFormat->MesaFormat].format;
t->filter |=