Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2011-02-17 13:09:51 +0000
committerStijn Buys <ingar@osirion.org>2011-02-17 13:09:51 +0000
commit0c5a4394c4b0382e96fdde6c11ab908f63a4c973 (patch)
tree6ca779689e7e13e70f9a38444db9a1556273fbba /src/render/gl.h
parente082e5055ec81fcec9e38e41baae488f59aabbfb (diff)
Removed SDL exception for MacOS from configure,
removed extern "C" from OpenGL function pointers.
Diffstat (limited to 'src/render/gl.h')
-rw-r--r--src/render/gl.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/render/gl.h b/src/render/gl.h
index 51e215c..7270f2d 100644
--- a/src/render/gl.h
+++ b/src/render/gl.h
@@ -251,8 +251,6 @@ typedef void (* APIENTRY deletebuffers_func)(GLuint count, GLuint *id);
typedef void (* APIENTRY bindbuffer_func)(GLenum target, GLuint id);
typedef void (* APIENTRY bufferdata_func)(GLenum target, GLsizei size, const GLvoid *data, GLenum usage);
-extern "C" {
-
extern genbuffers_func genbuffers;
extern deletebuffers_func deletebuffers;
extern bindbuffer_func bindbuffer;
@@ -260,6 +258,4 @@ extern bufferdata_func bufferdata;
}
-}
-
#endif // __INCLUDED_RENDER_GL_H__