diff options
author | Keith Whitwell <[email protected]> | 1999-08-26 14:50:49 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 1999-08-26 14:50:49 +0000 |
commit | 2be79c1aa2c168b7ecfb8289ce462ffb1de935eb (patch) | |
tree | ade794e15539608ae1e89d264cdeb459c50783ae /src/mesa/x86 | |
parent | 0552b3063349d167b128714e49c704e8f9006071 (diff) |
various pipeline bugs
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/common_x86.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index 7d30be94cf8..b5dc202c3e1 100644 --- a/src/mesa/x86/common_x86.c +++ b/src/mesa/x86/common_x86.c @@ -32,6 +32,7 @@ */ #include <stdlib.h> +#include <stdio.h> #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); |