summaryrefslogtreecommitdiffstats
path: root/opengl/java/android
diff options
context:
space:
mode:
authorAkwasi Boateng <akwasi.boateng@ti.com>2011-11-11 15:34:19 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2011-11-11 15:34:19 +0000
commit1333742bedc9b462024302f302e3a7f27053df66 (patch)
treef7cf76c82246c9fad4481ad232f17dfa81f57d45 /opengl/java/android
parent0ed4c7f8cc8462d434c3a0103790b38fdbb8f392 (diff)
parentcb0db0306b5849a35d3d99eea1b34ce019c6f0d8 (diff)
downloadframeworks_base-1333742bedc9b462024302f302e3a7f27053df66.zip
frameworks_base-1333742bedc9b462024302f302e3a7f27053df66.tar.gz
frameworks_base-1333742bedc9b462024302f302e3a7f27053df66.tar.bz2
am cb0db030: Merge branch \'ics-mr1-plus-aosp\' of ssh://android-git:29418/platform/frameworks/base into ics-mr1-plus-aosp
* commit 'cb0db0306b5849a35d3d99eea1b34ce019c6f0d8': Make the overridden ImageView#setVisibility remotable Clamp non-monotonic stats instead of dropping. DO NOT MERGE. Fix leak in LayoutTransition Fix lastVisible/global rects Fix Wimax-less build. Fix leak in LayoutTransition Deferring wallpaper update to improve workspace scrolling (issue 5506959) Terminate EGL when an app goes in the background boot animation is dithered and scaled Fix NdefRecord byte-stream constructor. PopupWindow dismiss() can get into a recursive loop. Fold WiMAX state into the mobile RSSI. Remove dedicated wimax icon to fix RSSI layout.
Diffstat (limited to 'opengl/java/android')
-rw-r--r--opengl/java/android/opengl/EGLLogWrapper.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/opengl/java/android/opengl/EGLLogWrapper.java b/opengl/java/android/opengl/EGLLogWrapper.java
index 6c0fdb3..36e88a2 100644
--- a/opengl/java/android/opengl/EGLLogWrapper.java
+++ b/opengl/java/android/opengl/EGLLogWrapper.java
@@ -314,6 +314,16 @@ class EGLLogWrapper implements EGL11 {
checkError();
return result;
}
+
+ /** @hide **/
+ public boolean eglReleaseThread() {
+ begin("eglReleaseThread");
+ end();
+ boolean result = mEgl10.eglReleaseThread();
+ returns(result);
+ checkError();
+ return result;
+ }
public boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface) {
begin("eglInitialize");