diff options
| author | Jason Sams <rjsams@android.com> | 2009-10-26 15:19:28 -0700 |
|---|---|---|
| committer | Jason Sams <rjsams@android.com> | 2009-10-26 15:20:43 -0700 |
| commit | 83f1c63c56ed73e0dfcc4de67bc58a4df5b3fe69 (patch) | |
| tree | 3295906c8047a0eab55cfeed2765cf7bacb2ee46 /libs/rs/rsProgram.h | |
| parent | 52c931b7dd0c5f82f409dea85a62c1e6c9e17c35 (diff) | |
| download | frameworks_base-83f1c63c56ed73e0dfcc4de67bc58a4df5b3fe69.zip frameworks_base-83f1c63c56ed73e0dfcc4de67bc58a4df5b3fe69.tar.gz frameworks_base-83f1c63c56ed73e0dfcc4de67bc58a4df5b3fe69.tar.bz2 | |
Fix dirty state tracking of allocation attached to ProgramVertex objects when being updated while not attached.
Diffstat (limited to 'libs/rs/rsProgram.h')
| -rw-r--r-- | libs/rs/rsProgram.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/rs/rsProgram.h b/libs/rs/rsProgram.h index 57c654f..86a46e2 100644 --- a/libs/rs/rsProgram.h +++ b/libs/rs/rsProgram.h @@ -33,7 +33,6 @@ public: virtual ~Program(); void bindAllocation(Allocation *); - void checkUpdatedAllocation(const Allocation *); protected: // Components not listed in "in" will be passed though @@ -47,7 +46,7 @@ protected: public: - void forceDirty() {mDirty = true;} + void forceDirty() const {mDirty = true;} }; |
