diff options
author | Jordan Justen <[email protected]> | 2013-04-18 10:46:12 -0700 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2013-05-01 16:18:25 -0700 |
commit | 02f2bce08de5c8430a800860ffbee71d2b4f57fc (patch) | |
tree | 9dddf5c5e4e329a5e0b6d72b585c17ffc05d235d /src/mesa/main/fbobject.h | |
parent | 5da8288911bfd104756dfe6dc02be998208dd4cb (diff) |
mesa: implement glFramebufferTexture
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/fbobject.h')
-rw-r--r-- | src/mesa/main/fbobject.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.h b/src/mesa/main/fbobject.h index 5ebbb3538f8..e5d096f0937 100644 --- a/src/mesa/main/fbobject.h +++ b/src/mesa/main/fbobject.h @@ -193,6 +193,10 @@ _mesa_FramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); extern void GLAPIENTRY +_mesa_FramebufferTexture(GLenum target, GLenum attachment, + GLuint texture, GLint level); + +extern void GLAPIENTRY _mesa_FramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); |