diff options
author | Mathias Agopian <mathias@google.com> | 2010-05-26 21:31:09 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2010-05-26 21:31:09 -0700 |
commit | 38ece279eac69541536073f8502d8d8af51ce4a9 (patch) | |
tree | bfd77ae09a4109cd98cd110d8e9f1bc3db4675bf /libs/surfaceflinger_client | |
parent | 18d92c9c707fecd5bfc67f96f58383bcbac460fd (diff) | |
download | frameworks_native-38ece279eac69541536073f8502d8d8af51ce4a9.zip frameworks_native-38ece279eac69541536073f8502d8d8af51ce4a9.tar.gz frameworks_native-38ece279eac69541536073f8502d8d8af51ce4a9.tar.bz2 |
oopsie. forgot to displatch SET_BUFFERS_GEOMETRY
Diffstat (limited to 'libs/surfaceflinger_client')
-rw-r--r-- | libs/surfaceflinger_client/Surface.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/surfaceflinger_client/Surface.cpp b/libs/surfaceflinger_client/Surface.cpp index 534a54e..a26733e 100644 --- a/libs/surfaceflinger_client/Surface.cpp +++ b/libs/surfaceflinger_client/Surface.cpp @@ -610,6 +610,9 @@ int Surface::perform(int operation, va_list args) case NATIVE_WINDOW_SET_BUFFER_COUNT: res = dispatch_set_buffer_count( args ); break; + case NATIVE_WINDOW_SET_BUFFERS_GEOMETRY: + res = dispatch_set_buffers_geometry( args ); + break; default: res = NAME_NOT_FOUND; break; |