Merge pull request #2784 from sigmabeta/android-enable-cache-interpreter
Android: Allow usage of Cached Interpreter core.
This commit is contained in:
commit
93492a0e5a
|
@ -6,10 +6,12 @@
|
||||||
<!-- New UI CPU Core selection - ARM64 -->
|
<!-- New UI CPU Core selection - ARM64 -->
|
||||||
<string-array name="string_emu_cores" translatable="false">
|
<string-array name="string_emu_cores" translatable="false">
|
||||||
<item>@string/interpreter</item>
|
<item>@string/interpreter</item>
|
||||||
|
<item>@string/cached_interpreter</item>
|
||||||
<item>@string/jit_arm64_recompiler</item>
|
<item>@string/jit_arm64_recompiler</item>
|
||||||
</string-array>
|
</string-array>
|
||||||
<string-array name="int_emu_cores" translatable="false">
|
<string-array name="int_emu_cores" translatable="false">
|
||||||
<item>0</item>
|
<item>0</item>
|
||||||
|
<item>5</item>
|
||||||
<item>4</item>
|
<item>4</item>
|
||||||
</string-array>
|
</string-array>
|
||||||
|
|
||||||
|
|
|
@ -46,9 +46,11 @@
|
||||||
<!-- New UI CPU Core selection - Default -->
|
<!-- New UI CPU Core selection - Default -->
|
||||||
<string-array name="string_emu_cores" translatable="false">
|
<string-array name="string_emu_cores" translatable="false">
|
||||||
<item>@string/interpreter</item>
|
<item>@string/interpreter</item>
|
||||||
|
<item>@string/cached_interpreter</item>
|
||||||
</string-array>
|
</string-array>
|
||||||
<string-array name="int_emu_cores" translatable="false">
|
<string-array name="int_emu_cores" translatable="false">
|
||||||
<item>0</item>
|
<item>0</item>
|
||||||
|
<item>5</item>
|
||||||
</string-array>
|
</string-array>
|
||||||
|
|
||||||
<!-- Video Backend Selection - Supports OpenGL ES 3 -->
|
<!-- Video Backend Selection - Supports OpenGL ES 3 -->
|
||||||
|
|
|
@ -136,6 +136,7 @@
|
||||||
|
|
||||||
<!-- CPU Preference Fragment -->
|
<!-- CPU Preference Fragment -->
|
||||||
<string name="interpreter">Interpreter</string>
|
<string name="interpreter">Interpreter</string>
|
||||||
|
<string name="cached_interpreter">Cached Interpreter</string>
|
||||||
<string name="jit64_recompiler">JIT64 Recompiler</string>
|
<string name="jit64_recompiler">JIT64 Recompiler</string>
|
||||||
<string name="jitil_recompiler">JITIL Recompiler</string>
|
<string name="jitil_recompiler">JITIL Recompiler</string>
|
||||||
<string name="jit_arm_recompiler">JIT ARM Recompiler</string>
|
<string name="jit_arm_recompiler">JIT ARM Recompiler</string>
|
||||||
|
|
Loading…
Reference in New Issue