diff options
author | Mathias Agopian <mathias@google.com> | 2013-04-23 03:50:30 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-04-23 03:50:30 -0700 |
commit | 3cf76affd3ef28759789622e9e0134bdb045418b (patch) | |
tree | 7114ec6f90ad0627ec6b21473ef25a93f5511df1 /include/gui | |
parent | 93a9e03d2a7458398a17f2dc7434d7b385ed31d7 (diff) | |
parent | e692ab9a6be63193c5b52a6562d85d06c40463b8 (diff) | |
download | frameworks_native-3cf76affd3ef28759789622e9e0134bdb045418b.zip frameworks_native-3cf76affd3ef28759789622e9e0134bdb045418b.tar.gz frameworks_native-3cf76affd3ef28759789622e9e0134bdb045418b.tar.bz2 |
am e692ab9a: fix uninitialized variables in GLConsumer
* commit 'e692ab9a6be63193c5b52a6562d85d06c40463b8':
fix uninitialized variables in GLConsumer
Diffstat (limited to 'include/gui')
-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. |