diff options
author | Mathias Agopian <mathias@google.com> | 2011-07-25 19:56:08 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2011-07-25 20:03:43 -0700 |
commit | 3fbce7c56082e4e0d23f1c1c89983d3841853ed7 (patch) | |
tree | b9e02a09d19aa300ce1354623f7f0dda3ece18d9 /include/gui/SurfaceTextureClient.h | |
parent | ab7c13f96a3c883fb4c93749c2e6c68155d3ad95 (diff) | |
download | frameworks_native-3fbce7c56082e4e0d23f1c1c89983d3841853ed7.zip frameworks_native-3fbce7c56082e4e0d23f1c1c89983d3841853ed7.tar.gz frameworks_native-3fbce7c56082e4e0d23f1c1c89983d3841853ed7.tar.bz2 |
remove dead code and member variables.
also fix some comments and improve debugging logs.
Change-Id: I83e55309f306332b59e1ec46104c4a7fffbf3c97
Diffstat (limited to 'include/gui/SurfaceTextureClient.h')
-rw-r--r-- | include/gui/SurfaceTextureClient.h | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/include/gui/SurfaceTextureClient.h b/include/gui/SurfaceTextureClient.h index 56f029f..57f9e15 100644 --- a/include/gui/SurfaceTextureClient.h +++ b/include/gui/SurfaceTextureClient.h @@ -135,24 +135,12 @@ private: // a timestamp is auto-generated when queueBuffer is called. int64_t mTimestamp; - // mQueryWidth is the width returned by query(). It is set to width - // of the last dequeued buffer or to mReqWidth if no buffer was dequeued. - uint32_t mQueryWidth; - - // mQueryHeight is the height returned by query(). It is set to height - // of the last dequeued buffer or to mReqHeight if no buffer was dequeued. - uint32_t mQueryHeight; - - // mQueryFormat is the format returned by query(). It is set to the last - // dequeued format or to mReqFormat if no buffer was dequeued. - uint32_t mQueryFormat; - // mDefaultWidth is default width of the window, regardless of the - // set_dimension call + // native_window_set_buffers_dimensions call uint32_t mDefaultWidth; // mDefaultHeight is default width of the window, regardless of the - // set_dimension call + // native_window_set_buffers_dimensions call uint32_t mDefaultHeight; // mTransformHint is the transform probably applied to buffers of this |