From 5428705eee20ab73c61f952f19e4c2b29c25610c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 17 Jan 2000 20:00:15 +0000 Subject: added X86-optimized message for MESA_INFO --- src/mesa/main/context.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src') 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"), @@ -1667,6 +1667,11 @@ void gl_make_current2( GLcontext *newCtx, GLframebuffer *drawBuffer, fprintf(stderr, "Mesa thread-safe: YES\n"); #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; -- cgit v1.2.3