From 2be79c1aa2c168b7ecfb8289ce462ffb1de935eb Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Thu, 26 Aug 1999 14:50:49 +0000 Subject: various pipeline bugs --- src/mesa/x86/common_x86.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/mesa/x86') diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index 7d30be94cf..b5dc202c3e 100644 --- a/src/mesa/x86/common_x86.c +++ b/src/mesa/x86/common_x86.c @@ -32,6 +32,7 @@ */ #include +#include #include "common_x86asm.h" int gl_x86_cpu_features = 0; @@ -43,7 +44,7 @@ void gl_init_all_x86_asm (void) gl_x86_cpu_features = gl_identify_x86_cpu_features (); if (gl_x86_cpu_features & GL_CPU_GenuineIntel) { - printf ("GenuineIntel cpu detected.\n"); + fprintf (stderr, "GenuineIntel cpu detected.\n"); } gl_init_x86_asm_transforms (); @@ -52,7 +53,7 @@ void gl_init_all_x86_asm (void) if (gl_x86_cpu_features & GL_CPU_MMX) { char *s = getenv( "MESA_NO_MMX" ); if (s == NULL) { - printf ("MMX cpu detected.\n"); + fprintf (stderr, "MMX cpu detected.\n"); } else { gl_x86_cpu_features &= (!GL_CPU_MMX); } @@ -64,7 +65,7 @@ void gl_init_all_x86_asm (void) if (gl_x86_cpu_features & GL_CPU_3Dnow) { char *s = getenv( "MESA_NO_3DNOW" ); if (s == NULL) { - printf ("3Dnow cpu detected.\n"); + fprintf (stderr, "3Dnow cpu detected.\n"); gl_init_3dnow_asm_transforms (); } else { gl_x86_cpu_features &= (!GL_CPU_3Dnow); -- cgit v1.2.3