diff options
author | Marek Olšák <[email protected]> | 2017-03-23 22:35:03 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-03-29 15:44:00 +0200 |
commit | 226ff6aa30701fb1b4e69e07c5d76c4d9b5e5d77 (patch) | |
tree | 9766f6b712a0144ebb9a43a2c05df8085bf0ee57 /src/mesa/main/texstate.h | |
parent | bb9faba172193a33a20a86d0b1a3a4db6fabcaa0 (diff) |
mesa: inline _mesa_update_texture
Reviewed-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main/texstate.h')
-rw-r--r-- | src/mesa/main/texstate.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/main/texstate.h b/src/mesa/main/texstate.h index 52fe60275c2..cb329b07bfb 100644 --- a/src/mesa/main/texstate.h +++ b/src/mesa/main/texstate.h @@ -91,8 +91,11 @@ _mesa_ClientActiveTexture( GLenum target ); */ /*@{*/ -extern void -_mesa_update_texture( struct gl_context *ctx, GLuint new_state ); +extern void +_mesa_update_texture_matrices(struct gl_context *ctx); + +extern void +_mesa_update_texture_state(struct gl_context *ctx); extern GLboolean _mesa_init_texture( struct gl_context *ctx ); |