add required_hw_api to 00_example and pcsx2, add BIOS and checksums to pcsx2, move GL to last resort for dolphin

This commit is contained in:
hunterk 2021-06-03 22:49:34 -05:00
parent ea687c728d
commit 3495db3a44
3 changed files with 20 additions and 2 deletions

View file

@ -75,6 +75,8 @@
# database = "Nintendo - Nintendo Entertainment System|Nintendo - Famicom Disk System"
# Does the core support/require support for libretro-gl or other hardware-acceleration in the frontend?
# hw_render = "false"
# Which hardware-rendering APIs does the core support? Delimited by pipe characters.
required_hw_api = "Vulkan >= 1.0 | Direct3D >= 10.0 | OpenGL Core >= 3.3 | OpenGL ES >= 3.0"
# Does the core require ongoing access to the file after loading? Mostly used for softpatching and streaming of data
# needs_fullpath = "false"
# Does the core support the libretro disk control interface for swapping disks on the fly?

View file

@ -26,7 +26,7 @@ core_options = "true"
core_options_version = "1.0"
load_subsystem = "false"
hw_render = "true"
required_hw_api = "OpenGL >= 3.0 | OpenGL Core >= 3.3 | OpenGL ES >= 3.0 | Vulkan >= 1.0 | Direct3D >= 10.0"
required_hw_api = "Vulkan >= 1.0 | Direct3D >= 10.0 | OpenGL Core >= 3.3 | OpenGL ES >= 3.0"
needs_fullpath = "true"
disk_control = "false"
is_experimental = "false"

View file

@ -17,5 +17,21 @@ systemid = "playstation2"
database = "Sony - PlayStation 2"
supports_no_game = "false"
needs_fullpath = "true"
load_subsystem = "false"
hw_render = "true"
required_hw_api = "Direct3D >= 11.0 | OpenGL Core >= 3.3 | OpenGL >= 3.0"
savestate = "false"
memory_descriptors = "false"
description = "A port of the mature and highly-compatible PCSX2 Playstation 2 emulator to libretro. This core is a good first choice for most users as compared with the Play! core, which has lower compatibility with the PS2 library."
# Firmware / BIOS
firmware_count = 2
firmware0_desc = "Encrypted DVD Player software"
firmware0_path = "PCSX2/bios/EROM.BIN"
firmware0_opt = "false"
firmware1_desc = "BIOS Additions"
firmware1_path = "PCSX2/bios/rom1.bin"
firmware1_opt = "false"
notes = "(!) EROM.BIN (md5): 9a9e8ed7668e6adfc8f7766c08ab9cd0|(!) rom1.bin (md5): 44552702b05697a14ccbe2ca22ee7139"
description = "A port of the mature and highly-compatible PCSX2 Playstation 2 emulator to libretro. This core is a good first choice for most users as compared with the Play! core, which has lower compatibility with the PS2 library. Required BIOS files include EROM.BIN, rom1.bin, and at least one set of scph*.bin/.mec/.nvm dumps that match each region of games you wish to run. A newer BIOS than scph10000 is recommended, as this original BIOS has problems in memory card emulation and other sections."