Fix an incorrect comment and info field

This commit is contained in:
Jesse Talavera 2024-06-14 15:14:17 -04:00
parent 5816985f22
commit a73780fcf7
2 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,7 @@ is_experimental = "false"
libretro_saves = "true" libretro_saves = "true"
load_subsystem = "true" load_subsystem = "true"
needs_fullpath = "false" needs_fullpath = "false"
required_hw_api = "OpenGL Core >= 3.1" required_hw_api = "OpenGL Core >= 3.2"
savestate = "true" savestate = "true"
savestate_features = "serialized" savestate_features = "serialized"
single_purpose = "false" single_purpose = "false"

View File

@ -147,7 +147,8 @@ MelonDsDs::OpenGLRenderState::OpenGLRenderState() {
retro::debug(TracyFunction); retro::debug(TracyFunction);
glsm_ctx_params_t params = {}; glsm_ctx_params_t params = {};
// MelonDS DS wants an opengl 3.1 context, so glcore is required for mesa compatibility // MelonDS needs at least OpenGL 3.2 for OpenGL renderer
// (it doesn't use the legacy fixed-function pipeline)
params.context_type = RETRO_HW_CONTEXT_OPENGL_CORE; params.context_type = RETRO_HW_CONTEXT_OPENGL_CORE;
params.major = 3; params.major = 3;
params.minor = 2; params.minor = 2;