mirror of
https://github.com/JesseTG/melonds-ds.git
synced 2024-11-23 06:29:46 +00:00
Fix an incorrect comment and info
field
This commit is contained in:
parent
5816985f22
commit
a73780fcf7
@ -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"
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user