<div dir="ltr"><div dir="ltr">Hi,<br><br></div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, 15 Apr 2022 at 10:09, DdP Lombard <<a href="mailto:ddp@lombards.xyz">ddp@lombards.xyz</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hey,<br>
I'm currently using the new "Crocus" driver for my GMA4500MHD, but<br>
unfortunately Xorg crashes, when I open certain images, display certain<br>
websites or simply open some programs. I think some GLSL functions<br>
are being called that my GPU can't offer. Here is my xorg.log<br>
<br>
<br>
<br>
[  3751.392] Failed to compile FS: 0:1(10): error: GLSL 1.30 is not<br>
supported. Supported versions are: 1.10, 1.20, and 1.00 ES<br>
<br>
[  3751.392] Program source:<br>
#version 130<br>
#ifdef GL_ES<br>
precision mediump float;<br>
#endif<br>
#define RepeatNone                            0<br>
#define RepeatNormal                     1<br>
#define RepeatPad                        2<br>
#define RepeatReflect                    3<br>
#define RepeatFix                             10<br>
uniform int                     source_repeat_mode;<br>
uniform int                     mask_repeat_mode;<br>
vec2 rel_tex_coord(vec2 texture, vec4 wh, int repeat) <br>
{<br>
        vec2 rel_tex; <br>
        rel_tex = texture * wh.xy; <br>
        if (repeat == RepeatFix + RepeatNone)<br>
                return rel_tex; <br>
        else if (repeat == RepeatFix + RepeatNormal) <br>
                rel_tex = floor(rel_tex) + (fract(rel_tex) / wh.xy); <br>
        else if (repeat == RepeatFix + RepeatPad) { <br>
                if (rel_tex.x >= 1.0) <br>
                        rel_tex.x = 1.0 - wh.z * wh.x / 2.; <br>
                else if (rel_tex.x < 0.0) <br>
                        rel_tex.x = 0.0; <br>
                if (rel_tex.y >= 1.0) <br>
                        rel_tex.y = 1.0 - wh.w * wh.y / 2.; <br>
                else if (rel_tex.y < 0.0) <br>
                        rel_tex.y = 0.0; <br>
                rel_tex = rel_tex / wh.xy; <br>
        } else if (repeat == RepeatFix + RepeatReflect) {<br>
                if ((1.0 - mod(abs(floor(rel_tex.x)), 2.0)) < 0.001)<br>
[  3751.392] (EE) <br>
Fatal server error:<br>
[  3751.395] (EE) GLSL compile failure<br>
[  3751.395] (EE) <br>
[  3751.395] (EE) <br>
Please consult the The X.Org Foundation support <br>
         at <a href="http://wiki.x.org" rel="noreferrer" target="_blank">http://wiki.x.org</a><br>
 for help. <br>
[  3751.395] (EE) Please also check the log file at<br>
"/home/lombard/.local/share/xorg/Xorg.0.log" for additional<br>
information. [  3751.395] (EE) [  3751.396] (II) AIGLX: Suspending<br>
AIGLX clients for VT switch [  3751.444] (EE) Server terminated with<br>
error (1). Closing log file.<br></blockquote><div><br></div>That's glamor (in glamor_create_composite_fs() function), please file an issue in gitlab [1] and attach the relevant logs ("/home/lombard/.local/share/xorg/Xorg.0.log").<br><br>I suspect this is with the latest xserver 21.1? I wonder if commit  a9552868 [2] could possibly be related, maybe try with xserver 1.20 to see if it has the same issue?<br><br><div>Meanwhile, as a workaround, you may want to disable glamor in your xorg.conf, it will be slower but it shouldn't crash.<span class="sew5ozbx428uod3"></span><span class="sew5ozbx428uod3"></span></div><br>HTH<br>Cheers<br>Olivier<br><br>[1] <a href="https://gitlab.freedesktop.org/xorg/xserver/-/issues">https://gitlab.freedesktop.org/xorg/xserver/-/issues</a><br><div>[2] <a href="https://gitlab.freedesktop.org/xorg/xserver/-/commit/a95528686">https://gitlab.freedesktop.org/xorg/xserver/-/commit/a95528686</a> </div></div></div>