summaryrefslogtreecommitdiffstats
path: root/core/jni/android_view_Surface.cpp
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2010-06-04 18:26:32 -0700
committerMathias Agopian <mathias@google.com>2010-06-04 18:57:41 -0700
commitfae5cb2b356a1fef172b43066180a7ab4c32dbac (patch)
tree55e73b81c3a666ab1165603238e7ca43495ff99c /core/jni/android_view_Surface.cpp
parent7623da435e45c7c03ef6a00a43675deb6645f070 (diff)
downloadframeworks_base-fae5cb2b356a1fef172b43066180a7ab4c32dbac.zip
frameworks_base-fae5cb2b356a1fef172b43066180a7ab4c32dbac.tar.gz
frameworks_base-fae5cb2b356a1fef172b43066180a7ab4c32dbac.tar.bz2
optimize Surface.readFromParcel()
this is called for each relayout() and used to create a full Surface (cpp) which in turn did some heavy work (including an IPC with surfaceflinger), most of the time to destroy it immediatelly when the returned surface (the one in the parcel) was the same. we now more intelligentely read from the parcel and construct the new object only if needed. Change-Id: Idfd40d9ac96ffc6d4ae5fd99bcc0773e131e2267
Diffstat (limited to 'core/jni/android_view_Surface.cpp')
-rw-r--r--core/jni/android_view_Surface.cpp19
1 files changed, 9 insertions, 10 deletions
diff --git a/core/jni/android_view_Surface.cpp b/core/jni/android_view_Surface.cpp
index 838ef22..06fa84b 100644
--- a/core/jni/android_view_Surface.cpp
+++ b/core/jni/android_view_Surface.cpp
@@ -14,6 +14,8 @@
* limitations under the License.
*/
+#define LOG_TAG "Surface"
+
#include <stdio.h>
#include "android_util_Binder.h"
@@ -226,8 +228,9 @@ static void Surface_initParcel(JNIEnv* env, jobject clazz, jobject argParcel)
doThrow(env, "java/lang/NullPointerException", NULL);
return;
}
- sp<Surface> rhs = new Surface(*parcel);
- setSurface(env, clazz, rhs);
+
+ sp<Surface> sur(Surface::readFromParcel(*parcel, 0));
+ setSurface(env, clazz, sur);
}
static jint Surface_getIdentity(JNIEnv* env, jobject clazz)
@@ -586,7 +589,7 @@ static void Surface_copyFrom(
* a Surface and is necessary for returning the Surface reference to
* the caller. At this point, we should only have a SurfaceControl.
*/
-
+
const sp<SurfaceControl>& surface = getSurfaceControl(env, clazz);
const sp<SurfaceControl>& rhs = getSurfaceControl(env, other);
if (!SurfaceControl::isSameSurface(surface, rhs)) {
@@ -605,13 +608,9 @@ static void Surface_readFromParcel(
return;
}
- const sp<Surface>& control(getSurface(env, clazz));
- sp<Surface> rhs = new Surface(*parcel);
- if (!Surface::isSameSurface(control, rhs)) {
- // we reassign the surface only if it's a different one
- // otherwise we would loose our client-side state.
- setSurface(env, clazz, rhs);
- }
+ const sp<Surface>& curr(getSurface(env, clazz));
+ sp<Surface> sur(Surface::readFromParcel(*parcel, curr));
+ setSurface(env, clazz, sur);
}
static void Surface_writeToParcel(