diff options
author | Mathias Agopian <mathias@google.com> | 2013-04-23 11:16:44 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-04-23 11:16:44 -0700 |
commit | 6bbd8e30b5a740cc75615c8c4cff1767107da240 (patch) | |
tree | f10c7dc4706646e82038f2efb331ea91a970c8b0 /include | |
parent | dfc11ac5c2b1b2d4077eaa268a068d18bde36420 (diff) | |
parent | 3cf76affd3ef28759789622e9e0134bdb045418b (diff) | |
download | frameworks_native-6bbd8e30b5a740cc75615c8c4cff1767107da240.zip frameworks_native-6bbd8e30b5a740cc75615c8c4cff1767107da240.tar.gz frameworks_native-6bbd8e30b5a740cc75615c8c4cff1767107da240.tar.bz2 |
am 3cf76aff: am e692ab9a: fix uninitialized variables in GLConsumer
* commit '3cf76affd3ef28759789622e9e0134bdb045418b':
fix uninitialized variables in GLConsumer
Diffstat (limited to 'include')
-rw-r--r-- | include/gui/GLConsumer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gui/GLConsumer.h b/include/gui/GLConsumer.h index 3b8dd77..f0a75dc 100644 --- a/include/gui/GLConsumer.h +++ b/include/gui/GLConsumer.h @@ -323,7 +323,7 @@ private: uint32_t mCurrentTransform; // mCurrentScalingMode is the scaling mode for the current texture. It gets - // set to each time updateTexImage is called. + // set each time updateTexImage is called. uint32_t mCurrentScalingMode; // mCurrentFence is the fence received from BufferQueue in updateTexImage. |