From f8acbed50d96d35d2a354f1fe7e81594d79a3186 Mon Sep 17 00:00:00 2001 From: Karl Schultz Date: Fri, 4 Oct 2002 15:58:33 +0000 Subject: Fix for bug 618459. Mods to allow compilation on VC++ 5.0 (Michael Krause) --- src/mesa/drivers/windows/wmesa.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/mesa/drivers/windows') diff --git a/src/mesa/drivers/windows/wmesa.c b/src/mesa/drivers/windows/wmesa.c index bd8d8c69d6..05029adbfe 100644 --- a/src/mesa/drivers/windows/wmesa.c +++ b/src/mesa/drivers/windows/wmesa.c @@ -1,4 +1,4 @@ -/* $Id: wmesa.c,v 1.36 2002/09/27 02:45:39 brianp Exp $ */ +/* $Id: wmesa.c,v 1.37 2002/10/04 15:58:33 kschultz Exp $ */ /* * Windows (Win32) device driver for Mesa 3.4 @@ -101,7 +101,13 @@ WMesaContext WC = NULL; #ifdef COMPILE_SETPIXEL -__forceinline void wmSetPixel(PWMC pwc, int iScanLine, int iPixel, BYTE r, BYTE g, BYTE b) +#if defined(_MSC_VER) && _MSC_VER >= 1200 +#define FORCEINLINE __forceinline +#else +#define FORCEINLINE __inline +#endif + +FORCEINLINE void wmSetPixel(PWMC pwc, int iScanLine, int iPixel, BYTE r, BYTE g, BYTE b) { pwc->wmSetPixel(pwc,iScanLine,iPixel,r,g,b); } -- cgit v1.2.3