mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-04 09:22:38 +00:00
Add JNI interface for enabling writing block profile results.
This commit is contained in:
parent
0da086e389
commit
a36dc19d9b
2 changed files with 30 additions and 0 deletions
|
@ -202,6 +202,17 @@ public final class NativeLibrary
|
|||
/** Stops emulation. */
|
||||
public static native void StopEmulation();
|
||||
|
||||
/**
|
||||
* Enables or disables CPU block profiling
|
||||
* @param enable
|
||||
*/
|
||||
public static native void SetProfiling(boolean enable);
|
||||
|
||||
/**
|
||||
* Writes out the block profile results
|
||||
*/
|
||||
public static native void WriteProfileResults();
|
||||
|
||||
/** Native EGL functions not exposed by Java bindings **/
|
||||
public static native void eglBindAPI(int api);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue