diff options
author | Mathias Agopian <mathias@google.com> | 2011-08-17 16:45:35 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-08-17 16:45:35 -0700 |
commit | 9a6e71d14f1f8122aa63a89d0372fccd396600f4 (patch) | |
tree | a8cea23517f7d00deb0531282974427080ae272e /include | |
parent | fcdafba030a21afcfccaca0b093f0f92db8de54f (diff) | |
parent | 29b5762efc359022168e5099c1d17925444d3147 (diff) | |
download | frameworks_native-9a6e71d14f1f8122aa63a89d0372fccd396600f4.zip frameworks_native-9a6e71d14f1f8122aa63a89d0372fccd396600f4.tar.gz frameworks_native-9a6e71d14f1f8122aa63a89d0372fccd396600f4.tar.bz2 |
Merge "don't return the current buffer from dequeueBuffer"
Diffstat (limited to 'include')
-rw-r--r-- | include/gui/SurfaceTexture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gui/SurfaceTexture.h b/include/gui/SurfaceTexture.h index a6fb12e..493993d 100644 --- a/include/gui/SurfaceTexture.h +++ b/include/gui/SurfaceTexture.h @@ -275,7 +275,7 @@ private: enum BufferState { // FREE indicates that the buffer is not currently being used and // will not be used in the future until it gets dequeued and - // subseqently queued by the client. + // subsequently queued by the client. FREE = 0, // DEQUEUED indicates that the buffer has been dequeued by the |