summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-01-17 20:00:15 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-01-17 20:00:15 +0000
commit5428705eee20ab73c61f952f19e4c2b29c25610c (patch)
treecd5240864096db471e518a5417c75f1805382a08 /src/mesa/main
parent003caf24bbf87c46130cda4bb9012495b863a0e4 (diff)
added X86-optimized message for MESA_INFO
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/context.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 2b2e8871e0..5645026761 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -1,10 +1,10 @@
-/* $Id: context.c,v 1.31 2000/01/14 04:45:47 brianp Exp $ */
+/* $Id: context.c,v 1.32 2000/01/17 20:00:15 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 3.3
*
- * Copyright (C) 1999 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -1668,6 +1668,11 @@ void gl_make_current2( GLcontext *newCtx, GLframebuffer *drawBuffer,
#else
fprintf(stderr, "Mesa thread-safe: NO\n");
#endif
+#if defined(USE_X86_ASM)
+ fprintf(stderr, "Mesa x86-optimized: YES\n");
+#else
+ fprintf(stderr, "Mesa x86-optimized: NO\n");
+#endif
}
newCtx->FirstTimeCurrent = GL_FALSE;
}