aboutsummaryrefslogtreecommitdiffstats
path: root/make/stub_includes
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2003-07-14 10:01:41 +0000
committerKenneth Russel <[email protected]>2003-07-14 10:01:41 +0000
commitad52b3d900d7185dd8a7056f70a942affd374d11 (patch)
treedb1dd0ab633fa4a21289cb2b969dcea9fdb1d81c /make/stub_includes
parentb80164672df649e0b6fe767f5b7e65009c91b0a2 (diff)
Updated jogl build documentation for Ant build. Deleted now-obsolete
Makefiles and redundant gl.c and similar files from platform-specific stub_includes directories; the latter have been moved to stub_includes/common. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@22 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/stub_includes')
-rw-r--r--make/stub_includes/macosx/gl-impl.c23
-rw-r--r--make/stub_includes/macosx/gl.c7
-rw-r--r--make/stub_includes/macosx/glu-impl.c3
-rw-r--r--make/stub_includes/macosx/glu.c2
-rw-r--r--make/stub_includes/win32/cg.c26
-rw-r--r--make/stub_includes/win32/gl-impl.c24
-rw-r--r--make/stub_includes/win32/gl.c9
-rw-r--r--make/stub_includes/win32/glu-impl.c3
-rw-r--r--make/stub_includes/win32/glu.c2
-rw-r--r--make/stub_includes/x11/cg.c26
-rw-r--r--make/stub_includes/x11/gl-impl.c23
-rw-r--r--make/stub_includes/x11/gl.c7
-rw-r--r--make/stub_includes/x11/glu-impl.c3
-rw-r--r--make/stub_includes/x11/glu.c2
14 files changed, 0 insertions, 160 deletions
diff --git a/make/stub_includes/macosx/gl-impl.c b/make/stub_includes/macosx/gl-impl.c
deleted file mode 100644
index eddcf6ff6..000000000
--- a/make/stub_includes/macosx/gl-impl.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <X11/Xlib.h>
-#include <X11/Xutil.h>
-#define GLAPI
-
-// Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
-// "glext.h" are parsed.
-#define GL_GLEXT_PROTOTYPES
-
-#include <GL/gl.h>
-
-#include <GL/cglext.h>
-
-// Define GLX_GLXEXT_PROTOTYPES so that the OpenGL GLX extension prototypes in
-// "glxext.h" are parsed.
-#define GLX_GLXEXT_PROTOTYPES
-
-#include <GL/glxext.h>
-
-// Generate unimplemented stubs for wgl extensions
-#define WGL_WGLEXT_PROTOTYPES
-#define SKIP_WGL_HANDLE_DEFINITIONS
-#include <windows.h>
-#include <GL/wglext.h>
diff --git a/make/stub_includes/macosx/gl.c b/make/stub_includes/macosx/gl.c
deleted file mode 100644
index e91ee95f3..000000000
--- a/make/stub_includes/macosx/gl.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#define GLAPI
-
-// Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
-// "glext.h" are parsed.
-#define GL_GLEXT_PROTOTYPES
-
-#include <GL/gl.h>
diff --git a/make/stub_includes/macosx/glu-impl.c b/make/stub_includes/macosx/glu-impl.c
deleted file mode 100644
index 2328639d8..000000000
--- a/make/stub_includes/macosx/glu-impl.c
+++ /dev/null
@@ -1,3 +0,0 @@
-#include <GL/glu.h>
-
-
diff --git a/make/stub_includes/macosx/glu.c b/make/stub_includes/macosx/glu.c
deleted file mode 100644
index 91020e365..000000000
--- a/make/stub_includes/macosx/glu.c
+++ /dev/null
@@ -1,2 +0,0 @@
-#include <GL/glu.h>
-
diff --git a/make/stub_includes/win32/cg.c b/make/stub_includes/win32/cg.c
deleted file mode 100644
index 98c824285..000000000
--- a/make/stub_includes/win32/cg.c
+++ /dev/null
@@ -1,26 +0,0 @@
-// Define __gl_h_ so that GL/gl.h doesn't get bound as part of CgGL.java
-// because cgGL.h tries to include it
-#define __gl_h_
-
-// Define some types so that cgGL.h has the types it expected to get by
-// including GL/gl.h (which we disabled above)
-typedef unsigned int GLenum;
-typedef unsigned char GLboolean;
-typedef unsigned int GLbitfield;
-typedef void GLvoid;
-typedef signed char GLbyte; /* 1-byte signed */
-typedef short GLshort; /* 2-byte signed */
-typedef int GLint; /* 4-byte signed */
-typedef unsigned char GLubyte; /* 1-byte unsigned */
-typedef unsigned short GLushort; /* 2-byte unsigned */
-typedef unsigned int GLuint; /* 4-byte unsigned */
-typedef int GLsizei; /* 4-byte signed */
-typedef float GLfloat; /* single precision float */
-typedef float GLclampf; /* single precision float in [0,1] */
-typedef double GLdouble; /* double precision float */
-typedef double GLclampd; /* double precision float in [0,1] */
-
-#define CGDLL_API
-#include <CG/cgGL.h>
-
-
diff --git a/make/stub_includes/win32/gl-impl.c b/make/stub_includes/win32/gl-impl.c
deleted file mode 100644
index 8ffb057f3..000000000
--- a/make/stub_includes/win32/gl-impl.c
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <windows.h>
-#define GLAPI
-
-// Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
-// "glext.h" are parsed.
-#define GL_GLEXT_PROTOTYPES
-
-#include <GL/gl.h>
-
-#include <GL/cglext.h>
-
-// Define WGL_GLEXT_PROTOTYPES so that the OpenGL WGL extension prototypes in
-// "wglext.h" are parsed.
-#define WGL_WGLEXT_PROTOTYPES
-#define SKIP_WGL_HANDLE_DEFINITIONS
-
-#include <GL/wglext.h>
-
-// Generate unimplemented stubs for glX extensions
-#define GLX_GLXEXT_PROTOTYPES
-#include <X11/Xlib.h>
-#include <X11/Xutil.h>
-#include <GL/glxext.h>
-
diff --git a/make/stub_includes/win32/gl.c b/make/stub_includes/win32/gl.c
deleted file mode 100644
index 76b7a3220..000000000
--- a/make/stub_includes/win32/gl.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <windows.h>
-#define GLAPI
-
-// Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
-// "glext.h" are parsed.
-#define GL_GLEXT_PROTOTYPES
-
-#include <GL/gl.h>
-
diff --git a/make/stub_includes/win32/glu-impl.c b/make/stub_includes/win32/glu-impl.c
deleted file mode 100644
index 2328639d8..000000000
--- a/make/stub_includes/win32/glu-impl.c
+++ /dev/null
@@ -1,3 +0,0 @@
-#include <GL/glu.h>
-
-
diff --git a/make/stub_includes/win32/glu.c b/make/stub_includes/win32/glu.c
deleted file mode 100644
index 91020e365..000000000
--- a/make/stub_includes/win32/glu.c
+++ /dev/null
@@ -1,2 +0,0 @@
-#include <GL/glu.h>
-
diff --git a/make/stub_includes/x11/cg.c b/make/stub_includes/x11/cg.c
deleted file mode 100644
index 98c824285..000000000
--- a/make/stub_includes/x11/cg.c
+++ /dev/null
@@ -1,26 +0,0 @@
-// Define __gl_h_ so that GL/gl.h doesn't get bound as part of CgGL.java
-// because cgGL.h tries to include it
-#define __gl_h_
-
-// Define some types so that cgGL.h has the types it expected to get by
-// including GL/gl.h (which we disabled above)
-typedef unsigned int GLenum;
-typedef unsigned char GLboolean;
-typedef unsigned int GLbitfield;
-typedef void GLvoid;
-typedef signed char GLbyte; /* 1-byte signed */
-typedef short GLshort; /* 2-byte signed */
-typedef int GLint; /* 4-byte signed */
-typedef unsigned char GLubyte; /* 1-byte unsigned */
-typedef unsigned short GLushort; /* 2-byte unsigned */
-typedef unsigned int GLuint; /* 4-byte unsigned */
-typedef int GLsizei; /* 4-byte signed */
-typedef float GLfloat; /* single precision float */
-typedef float GLclampf; /* single precision float in [0,1] */
-typedef double GLdouble; /* double precision float */
-typedef double GLclampd; /* double precision float in [0,1] */
-
-#define CGDLL_API
-#include <CG/cgGL.h>
-
-
diff --git a/make/stub_includes/x11/gl-impl.c b/make/stub_includes/x11/gl-impl.c
deleted file mode 100644
index eddcf6ff6..000000000
--- a/make/stub_includes/x11/gl-impl.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <X11/Xlib.h>
-#include <X11/Xutil.h>
-#define GLAPI
-
-// Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
-// "glext.h" are parsed.
-#define GL_GLEXT_PROTOTYPES
-
-#include <GL/gl.h>
-
-#include <GL/cglext.h>
-
-// Define GLX_GLXEXT_PROTOTYPES so that the OpenGL GLX extension prototypes in
-// "glxext.h" are parsed.
-#define GLX_GLXEXT_PROTOTYPES
-
-#include <GL/glxext.h>
-
-// Generate unimplemented stubs for wgl extensions
-#define WGL_WGLEXT_PROTOTYPES
-#define SKIP_WGL_HANDLE_DEFINITIONS
-#include <windows.h>
-#include <GL/wglext.h>
diff --git a/make/stub_includes/x11/gl.c b/make/stub_includes/x11/gl.c
deleted file mode 100644
index e91ee95f3..000000000
--- a/make/stub_includes/x11/gl.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#define GLAPI
-
-// Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
-// "glext.h" are parsed.
-#define GL_GLEXT_PROTOTYPES
-
-#include <GL/gl.h>
diff --git a/make/stub_includes/x11/glu-impl.c b/make/stub_includes/x11/glu-impl.c
deleted file mode 100644
index 2328639d8..000000000
--- a/make/stub_includes/x11/glu-impl.c
+++ /dev/null
@@ -1,3 +0,0 @@
-#include <GL/glu.h>
-
-
diff --git a/make/stub_includes/x11/glu.c b/make/stub_includes/x11/glu.c
deleted file mode 100644
index 91020e365..000000000
--- a/make/stub_includes/x11/glu.c
+++ /dev/null
@@ -1,2 +0,0 @@
-#include <GL/glu.h>
-