projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b20cea3
)
Add USE_SPARC_ASM diagnostics to print_info.
author
davem69
<davem69>
Tue, 5 Jun 2001 03:58:20 +0000
(
03:58
+0000)
committer
davem69
<davem69>
Tue, 5 Jun 2001 03:58:20 +0000
(
03:58
+0000)
src/mesa/main/context.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/context.c
b/src/mesa/main/context.c
index 4ff1941f1301a89618aaeccc91cef4852b3a3e78..ee6953ded861dfbd2c2b0d526d600c95f0b466c7 100644
(file)
--- a/
src/mesa/main/context.c
+++ b/
src/mesa/main/context.c
@@
-1,4
+1,4
@@
-/* $Id: context.c,v 1.1
39 2001/05/29 15:23:48 brianp
Exp $ */
+/* $Id: context.c,v 1.1
40 2001/06/05 03:58:20 davem69
Exp $ */
/*
* Mesa 3-D graphics library
@@
-1795,6
+1795,11
@@
static void print_info( void )
#else
fprintf(stderr, "Mesa x86-optimized: NO\n");
#endif
+#if defined(USE_SPARC_ASM)
+ fprintf(stderr, "Mesa sparc-optimized: YES\n");
+#else
+ fprintf(stderr, "Mesa sparc-optimized: NO\n");
+#endif
}