diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-11-03 18:31:06 +0100 |
---|---|---|
committer | Charles Lombardo <clombardo169@gmail.com> | 2023-11-03 18:31:06 +0100 |
commit | b3a1f793c3792dce9fb38c764d0ee9ee38d66783 (patch) | |
tree | ad2ff8b253582ac5a190a2cb67dd269af36c92da /src/android | |
parent | Merge pull request #11948 from german77/hard_ring (diff) | |
download | yuzu-b3a1f793c3792dce9fb38c764d0ee9ee38d66783.tar yuzu-b3a1f793c3792dce9fb38c764d0ee9ee38d66783.tar.gz yuzu-b3a1f793c3792dce9fb38c764d0ee9ee38d66783.tar.bz2 yuzu-b3a1f793c3792dce9fb38c764d0ee9ee38d66783.tar.lz yuzu-b3a1f793c3792dce9fb38c764d0ee9ee38d66783.tar.xz yuzu-b3a1f793c3792dce9fb38c764d0ee9ee38d66783.tar.zst yuzu-b3a1f793c3792dce9fb38c764d0ee9ee38d66783.zip |
Diffstat (limited to 'src/android')
-rw-r--r-- | src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt index 07bd78bf7..c456c0592 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt @@ -312,6 +312,8 @@ class EmulationFragment : Fragment(), SurfaceHolder.Callback { ViewUtils.showView(binding.surfaceInputOverlay) ViewUtils.hideView(binding.loadingIndicator) + emulationState.updateSurface() + // Setup overlay updateShowFpsOverlay() } @@ -805,6 +807,13 @@ class EmulationFragment : Fragment(), SurfaceHolder.Callback { } @Synchronized + fun updateSurface() { + if (surface != null) { + NativeLibrary.surfaceChanged(surface) + } + } + + @Synchronized fun clearSurface() { if (surface == null) { Log.warning("[EmulationFragment] clearSurface called, but surface already null.") |