diff options
author | Michel Dänzer <[email protected]> | 2008-05-02 16:22:20 +0100 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2008-05-02 16:22:20 +0100 |
commit | d4074c509b5d28be0a2ec51d40329e1aed7047ef (patch) | |
tree | b213c5c6c470c4b6d7ce1351f09bbf47cb16a4c0 /src/mesa/state_tracker/st_texture.h | |
parent | be8a42b4fcad0e0c7803e63f9c4b488c2f618cef (diff) |
gallium: Reallocate pipe_texture in st_TexImage if the texture object was used.
Fixes problems with interleaved glTexImage and rendering calls.
Diffstat (limited to 'src/mesa/state_tracker/st_texture.h')
-rw-r--r-- | src/mesa/state_tracker/st_texture.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/state_tracker/st_texture.h b/src/mesa/state_tracker/st_texture.h index 7abccb3a69f..b05762113cc 100644 --- a/src/mesa/state_tracker/st_texture.h +++ b/src/mesa/state_tracker/st_texture.h @@ -68,9 +68,7 @@ struct st_texture_object */ struct pipe_texture *pt; - GLboolean imageOverride; - GLint depthOverride; - GLuint pitchOverride; + GLboolean teximage_realloc; }; |