diff options
| author | 2010-05-26 21:34:52 -0700 | |
|---|---|---|
| committer | 2010-05-26 21:34:52 -0700 | |
| commit | 1afa755ca83c786585202d0a5560b558bb3d877b (patch) | |
| tree | bfd77ae09a4109cd98cd110d8e9f1bc3db4675bf | |
| parent | 6d5ae81061bf8dd2d5c988b4a298cc0be3c9c422 (diff) | |
| parent | 38ece279eac69541536073f8502d8d8af51ce4a9 (diff) | |
Merge "oopsie. forgot to displatch SET_BUFFERS_GEOMETRY" into kraken
| -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 534a54e6a4..a26733e9d1 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; |