summaryrefslogtreecommitdiffstats
path: root/progs/demos/isosurf.c
diff options
context:
space:
mode:
authorKarl Schultz <kschultz@freedesktop.org>2001-10-04 19:14:26 +0000
committerKarl Schultz <kschultz@freedesktop.org>2001-10-04 19:14:26 +0000
commitbffae58175b50bda3cc258c5aecb389adb2d9b5e (patch)
treea8fdea1a0a9eb939711dcee68a98b1281c94a014 /progs/demos/isosurf.c
parent3978d026eaf3d449adaecf336a1fa9d7e631dc19 (diff)
downloadexternal_mesa3d-bffae58175b50bda3cc258c5aecb389adb2d9b5e.zip
external_mesa3d-bffae58175b50bda3cc258c5aecb389adb2d9b5e.tar.gz
external_mesa3d-bffae58175b50bda3cc258c5aecb389adb2d9b5e.tar.bz2
Allow to compile in Windows.
Diffstat (limited to 'progs/demos/isosurf.c')
-rw-r--r--progs/demos/isosurf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/progs/demos/isosurf.c b/progs/demos/isosurf.c
index 2706ad9..437cdf4 100644
--- a/progs/demos/isosurf.c
+++ b/progs/demos/isosurf.c
@@ -1,4 +1,4 @@
-/* $Id: isosurf.c,v 1.12 2001/06/04 15:34:31 keithw Exp $ */
+/* $Id: isosurf.c,v 1.13 2001/10/04 19:14:26 kschultz Exp $ */
/*
* Display an isosurface of 3-D wind speed volume.
@@ -30,6 +30,9 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
+#ifdef _WIN32
+#include <windows.h>
+#endif
#define GL_GLEXT_LEGACY
#include "GL/glut.h"