summaryrefslogtreecommitdiffstats
path: root/libs/surfaceflinger_client
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2010-05-26 21:31:09 -0700
committerMathias Agopian <mathias@google.com>2010-05-26 21:31:09 -0700
commit663baddda9de01d0a7eccffaeb7ce39899e95146 (patch)
tree31f08ccadbdb385ab1920e0ced067f21d49f5d78 /libs/surfaceflinger_client
parent64f7549b0e0e2b77e698ae88389465342d3f28d7 (diff)
downloadframeworks_base-663baddda9de01d0a7eccffaeb7ce39899e95146.zip
frameworks_base-663baddda9de01d0a7eccffaeb7ce39899e95146.tar.gz
frameworks_base-663baddda9de01d0a7eccffaeb7ce39899e95146.tar.bz2
oopsie. forgot to displatch SET_BUFFERS_GEOMETRY
Diffstat (limited to 'libs/surfaceflinger_client')
-rw-r--r--libs/surfaceflinger_client/Surface.cpp3
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;