commit | a44249500f6c1c7a75b5c420fa2e81c2aa317a10 | [log] [tgz] |
---|---|---|
author | Jack Palevich <jackpal@google.com> | Sat Nov 07 07:49:15 2009 +0800 |
committer | Jack Palevich <jackpal@google.com> | Sat Nov 07 07:49:15 2009 +0800 |
tree | 7a793f8e3e1cb0abc67246af04c195dbbcd6d2b8 | |
parent | 8d51f7101d2427953dbff9b4b8f8c9fdc0dc4a91 [diff] |
Fix stupid bug in GLThreadManager implementation. The code intended to copy the old value of a field, before the field was updated. However, what the code was actually doing was copying the new value of the field, after the field was updated. The fix was to move the copy to before the update. This is work towards fixing bug 2228262