Remove obsolete NativeWindow_fromSurfaceTexture
Change-Id: I9351103929da515cb411fb2e7906bb9f27c4da20
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user