Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 86201289 authored by shirleyqian's avatar shirleyqian
Browse files

Fix null pointer exception of AGSL string.

Bug: 418943801
Test: local
Flag: com.android.systemui.enable_underlay
Change-Id: Ic0b170b17736a5a85343b4c2976f8523bfc8297a
parent b738d680
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ import org.intellij.lang.annotations.Language

object BackgroundGlowShader {
    @Language("AGSL")
    val FRAG_SHADER =
    const val FRAG_SHADER =
        ShaderUtilLibrary.SHADER_LIB +
            """
    uniform float2 resolution;
@@ -54,5 +54,4 @@ object BackgroundGlowShader {
        return combinedGradients;
    }
"""
                .trimIndent()
}