eden/src/android/app/src/main/jni/id_cache.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
570 B
C++
Raw Normal View History

2023-05-30 20:50:09 -07:00
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
2022-12-17 23:27:18 -08:00
#pragma once
#include <jni.h>
#include "video_core/rasterizer_interface.h"
2022-12-17 23:27:18 -08:00
namespace IDCache {
JNIEnv* GetEnvForThread();
jclass GetNativeLibraryClass();
jclass GetDiskCacheProgressClass();
jclass GetDiskCacheLoadCallbackStageClass();
2023-11-27 14:56:25 -05:00
jclass GetGameDirClass();
jmethodID GetGameDirConstructor();
2022-12-17 23:27:18 -08:00
jmethodID GetExitEmulationActivity();
jmethodID GetDiskCacheLoadProgress();
jmethodID GetOnEmulationStarted();
jmethodID GetOnEmulationStopped();
2022-12-17 23:27:18 -08:00
} // namespace IDCache