diff options
author | Timothy Arceri <[email protected]> | 2018-08-16 11:21:38 +1000 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-06-28 15:40:54 -0400 |
commit | 0972b0b059d78fb30d982939d0849542ecdf6f98 (patch) | |
tree | 485b9ed2f9b0e5e0fa5a513fe2e1c38f8fb4800d /src/mesa/main/texobj.h | |
parent | c37f03d46480e73d7c0cbfe93e91cd8d69d47220 (diff) |
mesa: add support for glBindMultiTextureEXT
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main/texobj.h')
-rw-r--r-- | src/mesa/main/texobj.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h index 743e6b73ddf..80e95d1f91a 100644 --- a/src/mesa/main/texobj.h +++ b/src/mesa/main/texobj.h @@ -209,6 +209,9 @@ extern void GLAPIENTRY _mesa_BindTexture( GLenum target, GLuint texture ); void GLAPIENTRY +_mesa_BindMultiTextureEXT(GLenum texunit, GLenum target, GLuint texture); + +void GLAPIENTRY _mesa_BindTextureUnit_no_error(GLuint unit, GLuint texture); extern void GLAPIENTRY |