qgo crashes X

No replies
calher

I am a member!

Offline
Joined: 06/19/2015

Tried joining a game online. X crashed. quiliro says line 14 is interesting.

caleb@bender:~$ tail -n 58 /var/log/Xorg.0.log.old
[281907.528] (II) event2 - Power Button: device is a keyboard
[281907.531] (II) event4 - Video Bus: is tagged by udev as: Keyboard
[281907.531] (II) event4 - Video Bus: device is a keyboard
[281907.534] (II) event0 - Sleep Button: is tagged by udev as: Keyboard
[281907.535] (II) event0 - Sleep Button: device is a keyboard
[281907.538] (II) event3 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[281907.538] (II) event3 - AT Translated Set 2 keyboard: device is a keyboard
[281907.542] (II) event5 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
[281907.542] (II) event5 - TPPS/2 IBM TrackPoint: device is a pointer
[281907.546] (II) event6 - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
[281907.546] (II) event6 - ThinkPad Extra Buttons: device is a keyboard
[281907.546] (II) event6 - ThinkPad Extra Buttons: device is a switch device
[281939.804] Failed to compile FS: 0:1(10): error: GLSL 1.30 is not supported. Supported versions are: 1.10, 1.20, and 1.00 ES

[281939.804] Program source:
#version 130
#ifdef GL_ES
precision mediump float;
#endif
#define RepeatNone 0
#define RepeatNormal 1
#define RepeatPad 2
#define RepeatReflect 3
#define RepeatFix 10
uniform int source_repeat_mode;
uniform int mask_repeat_mode;
vec2 rel_tex_coord(vec2 texture, vec4 wh, int repeat)
{
vec2 rel_tex;
rel_tex = texture * wh.xy;
if (repeat == RepeatFix + RepeatNone)
return rel_tex;
else if (repeat == RepeatFix + RepeatNormal)
rel_tex = floor(rel_tex) + (fract(rel_tex) / wh.xy);
else if (repeat == RepeatFix + RepeatPad) {
if (rel_tex.x >= 1.0)
rel_tex.x = 1.0 - wh.z * wh.x / 2.;
else if (rel_tex.x < 0.0)
rel_tex.x = 0.0;
if (rel_tex.y >= 1.0)
rel_tex.y = 1.0 - wh.w * wh.y / 2.;
else if (rel_tex.y < 0.0)
rel_tex.y = 0.0;
rel_tex = rel_tex / wh.xy;
} else if (repeat == RepeatFix + RepeatReflect) {
if ((1.0 - mod(abs(floor(rel_tex.x)), 2.0)) < 0.001)
[281939.804] (EE)
Fatal server error:
[281939.804] (EE) GLSL compile failure
[281939.804] (EE)
[281939.804] (EE)
Please consult the The X.Org Foundation support
at http://wiki.x.org
for help.
[281939.804] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[281939.804] (EE)
[281939.825] (II) AIGLX: Suspending AIGLX clients for VT switch
[281939.903] (EE) Server terminated with error (1). Closing log file.
caleb@bender:~$