We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f6dd60 commit a7fae0eCopy full SHA for a7fae0e
android/src/main/java/io/getstream/webrtc/flutter/SurfaceTextureRenderer.java
@@ -122,14 +122,14 @@ public void onSurfaceAvailable() {
122
}
123
124
@Override
125
- public void onSurfaceCleanup() {
126
- surfaceCleanup();
+ public void onSurfaceDestroyed() {
+ surfaceDestroyed();
127
128
129
);
130
131
132
- public void surfaceCleanup() {
+ public void surfaceDestroyed() {
133
ThreadUtils.checkIsOnMainThread();
134
final CountDownLatch completionLatch = new CountDownLatch(1);
135
releaseEglSurface(completionLatch::countDown);
0 commit comments