diff options
author | Mathias Agopian <mathias@google.com> | 2011-07-29 17:55:48 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2011-08-01 14:06:20 -0700 |
commit | 81a63350527cafce6929309533c58586878f10b5 (patch) | |
tree | 0608c55d931252200d06b3930e35d6422ee5493b /libs/gui/SurfaceTextureClient.cpp | |
parent | 003b7ffbb27a7ce68e9c4086e1305f2c7703caeb (diff) | |
download | frameworks_native-81a63350527cafce6929309533c58586878f10b5.zip frameworks_native-81a63350527cafce6929309533c58586878f10b5.tar.gz frameworks_native-81a63350527cafce6929309533c58586878f10b5.tar.bz2 |
connect/disconnect is now called from our EGL wrapper
the original connect/disconnect hooks are deprecated
and replace by api_connect/api_disconnect. the original
hooks are no no-ops.
api_connect/api_disconnect is now only called from the
android framework.
Bug: 5057915
Change-Id: I8ca64cd1acd6cabf915bf54689ec2e5f6dfa495a
Diffstat (limited to 'libs/gui/SurfaceTextureClient.cpp')
-rw-r--r-- | libs/gui/SurfaceTextureClient.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libs/gui/SurfaceTextureClient.cpp b/libs/gui/SurfaceTextureClient.cpp index e6837ea..d1037de 100644 --- a/libs/gui/SurfaceTextureClient.cpp +++ b/libs/gui/SurfaceTextureClient.cpp @@ -258,10 +258,10 @@ int SurfaceTextureClient::perform(int operation, va_list args) int res = NO_ERROR; switch (operation) { case NATIVE_WINDOW_CONNECT: - res = dispatchConnect(args); + // deprecated. must return NO_ERROR. break; case NATIVE_WINDOW_DISCONNECT: - res = dispatchDisconnect(args); + // deprecated. must return NO_ERROR. break; case NATIVE_WINDOW_SET_USAGE: res = dispatchSetUsage(args); @@ -296,6 +296,12 @@ int SurfaceTextureClient::perform(int operation, va_list args) case NATIVE_WINDOW_SET_SCALING_MODE: res = dispatchSetScalingMode(args); break; + case NATIVE_WINDOW_API_CONNECT: + res = dispatchConnect(args); + break; + case NATIVE_WINDOW_API_DISCONNECT: + res = dispatchDisconnect(args); + break; default: res = NAME_NOT_FOUND; break; |