Remove obsolete NativeWindow_fromSurfaceTexture

Change-Id: I9351103929da515cb411fb2e7906bb9f27c4da20
This commit is contained in:
Glenn Kasten
2011-10-21 12:52:29 -07:00
parent 5c405feb78
commit 809820e28b
2 changed files with 0 additions and 16 deletions

View File

@@ -32,14 +32,6 @@ ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface) {
return win.get();
}
ANativeWindow* ANativeWindow_fromSurfaceTexture(JNIEnv* env, jobject surfaceTexture) {
sp<ANativeWindow> win = android_SurfaceTexture_getNativeWindow(env, surfaceTexture);
if (win != NULL) {
win->incStrong((void*)ANativeWindow_acquire);
}
return win.get();
}
void ANativeWindow_acquire(ANativeWindow* window) {
window->incStrong((void*)ANativeWindow_acquire);
}

View File

@@ -33,14 +33,6 @@ extern "C" {
*/
ANativeWindow* ANativeWindow_fromSurface(JNIEnv* env, jobject surface);
/**
* Return the ANativeWindow associated with a Java SurfaceTexture object,
* for interacting with it through native code. This acquires a reference
* on the ANativeWindow that is returned; be sure to use ANativeWindow_release()
* when done with it so that it doesn't leak.
*/
ANativeWindow* ANativeWindow_fromSurfaceTexture(JNIEnv* env, jobject surfaceTexture);
#ifdef __cplusplus
};
#endif