Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Want <cwant@ualberta.ca>2006-02-23 02:34:12 +0300
committerChris Want <cwant@ualberta.ca>2006-02-23 02:34:12 +0300
commita30dc3866c433907a3e70da4521edb457d874840 (patch)
tree1f88517c925109ca85f6114aa7286e8daf9a8e29 /source/gameengine
parentfc9ba4b3233c1c76f1bdf8462c0e127d86cf14d0 (diff)
Some issues compiling on Irix:
+ the code in writemovie.c no longer compiles (since the renderer refactor). I have #if 0-ed it. + OpenGL on Irix doesn't have GL_ARB_vertex_program + mmap on Irix doesn't like MAP_ANON. + If using the MipsPro 7.3 compiler, the variable MIPS73_ISOHEADERS can be set to point to the directory with those weird C++ headers that don't have .h in the name
Diffstat (limited to 'source/gameengine')
-rw-r--r--source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_GLExtensionManager.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_GLExtensionManager.h b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_GLExtensionManager.h
index 00d1d0c9d05..26217c1d78e 100644
--- a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_GLExtensionManager.h
+++ b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_GLExtensionManager.h
@@ -52,6 +52,10 @@
# undef __glext_h_
#endif
+#ifdef __sgi
+# undef GL_ARB_vertex_program
+#endif
+
#include "glext.h"
#include "EXT_separate_specular_color.h"