diff options
author | Keith Whitwell <[email protected]> | 2009-07-17 10:44:22 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-07-22 12:48:00 +0100 |
commit | b5d583efeff5f195bff48c95125a225c273189e2 (patch) | |
tree | b3c68989829923586642d60c6b1287d5469acf4d /src/gallium/drivers/softpipe/sp_texture.h | |
parent | 07bb026900a6c01226217ceee1d4d1426c040d6e (diff) |
softpipe: make some small steps to flush texture cache less frequently
No performance gain yet, but the code is a bit cleaner.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_texture.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_texture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_texture.h b/src/gallium/drivers/softpipe/sp_texture.h index 893aa7d11d8..42df722a2d1 100644 --- a/src/gallium/drivers/softpipe/sp_texture.h +++ b/src/gallium/drivers/softpipe/sp_texture.h @@ -48,7 +48,7 @@ struct softpipe_texture */ struct pipe_buffer *buffer; - boolean modified; + unsigned timestamp; }; struct softpipe_transfer |