Merge pull request #8895 from orbea/glcore
Fix shaders init with glcore + kms.
This commit is contained in:
commit
fc149726c7
|
@ -909,7 +909,12 @@ static uint32_t gfx_ctx_drm_get_flags(void *data)
|
||||||
if (drm->core_hw_context_enable)
|
if (drm->core_hw_context_enable)
|
||||||
BIT32_SET(flags, GFX_CTX_FLAGS_GL_CORE_CONTEXT);
|
BIT32_SET(flags, GFX_CTX_FLAGS_GL_CORE_CONTEXT);
|
||||||
|
|
||||||
BIT32_SET(flags, GFX_CTX_FLAGS_SHADERS_GLSL);
|
if (string_is_equal(video_driver_get_ident(), "glcore"))
|
||||||
|
#ifdef HAVE_SLANG
|
||||||
|
BIT32_SET(flags, GFX_CTX_FLAGS_SHADERS_SLANG);
|
||||||
|
#endif
|
||||||
|
else
|
||||||
|
BIT32_SET(flags, GFX_CTX_FLAGS_SHADERS_GLSL);
|
||||||
|
|
||||||
return flags;
|
return flags;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue