diff options
author | Keith Whitwell <[email protected]> | 2009-06-18 10:13:55 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-06-18 10:13:55 +0100 |
commit | 1b05b5b4fecd9ac8ef34abdda6c085868016ad84 (patch) | |
tree | 026a00791b9ce653441c693b37f3a08ce7667ce2 /src/glew/glewinfo.c | |
parent | 0491142152dcc61ebe0b46b05c94957e54c44bd9 (diff) |
glew: correct misspelling of glFramebufferTextureLayer
This was misspelt as glFramebufferTexturLayer (missing e), causing
conflicts with the correctly spelt version in glext.h and extfuncs.h.
Diffstat (limited to 'src/glew/glewinfo.c')
-rw-r--r-- | src/glew/glewinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glew/glewinfo.c b/src/glew/glewinfo.c index 13c6d05bd1f..da2b241deab 100644 --- a/src/glew/glewinfo.c +++ b/src/glew/glewinfo.c @@ -708,7 +708,7 @@ static void _glewInfo_GL_ARB_framebuffer_object (void) glewInfoFunc("glDeleteFramebuffers", glDeleteFramebuffers == NULL); glewInfoFunc("glDeleteRenderbuffers", glDeleteRenderbuffers == NULL); glewInfoFunc("glFramebufferRenderbuffer", glFramebufferRenderbuffer == NULL); - glewInfoFunc("glFramebufferTexturLayer", glFramebufferTexturLayer == NULL); + glewInfoFunc("glFramebufferTextureLayer", glFramebufferTextureLayer == NULL); glewInfoFunc("glFramebufferTexture1D", glFramebufferTexture1D == NULL); glewInfoFunc("glFramebufferTexture2D", glFramebufferTexture2D == NULL); glewInfoFunc("glFramebufferTexture3D", glFramebufferTexture3D == NULL); |