Enable GLSL for Mali (Lima) / PinePhone devices

Commit 88cf8355 changed the behaviour of Mali (Lima) / PinePhone devices by disabling GLSL
88cf8355 got backported in 5.27.1 and broke PinePhone devices (White rectangle on topright quarter of a black screen)

This patch restores the behaviour of 5.27.0
master
Hannah Kiekens 2 years ago committed by Vlad Zahorodnii
parent 70e7622c69
commit 0543949df7

@ -6,7 +6,7 @@ ShadingLanguageVersion=1.30
[Settings]
LooseBinding=true
GLSL=false
GLSL=true
TextureNPOT=true
Mesa=true
Lima=true

@ -1138,8 +1138,7 @@ void GLPlatform::detect(OpenGLPlatformInterface platformInterface)
if (isLima()) {
m_recommendedCompositor = OpenGLCompositing;
// GLSL works but causes dramatic FPS drop on this GPU
m_supportsGLSL = false;
m_supportsGLSL = true;
}
if (isVideoCore4()) {

Loading…
Cancel
Save