Module: Mesa Branch: master Commit: ff005bdb7cdeb84477b26796ac216459e49daa55 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ff005bdb7cdeb84477b26796ac216459e49daa55
Author: Brian Paul <[email protected]> Date: Sat Mar 17 16:30:03 2012 -0600 mesa: use _mesa_dirty_texobj() in glTexParameter code Reviewed-by: José Fonseca <[email protected]> Reviewed-by: Eric Anholt <[email protected]> --- src/mesa/main/texparam.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index 9a2ec51..205f51f 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -41,6 +41,7 @@ #include "main/mtypes.h" #include "main/state.h" #include "main/texcompress.h" +#include "main/texobj.h" #include "main/texparam.h" #include "main/teximage.h" #include "main/texstate.h" @@ -221,7 +222,7 @@ static inline void incomplete(struct gl_context *ctx, struct gl_texture_object *texObj) { FLUSH_VERTICES(ctx, _NEW_TEXTURE); - texObj->_Complete = GL_FALSE; + _mesa_dirty_texobj(ctx, texObj, GL_TRUE); } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
