X11-Crash
von Krypton- SNIPPET_DESC:
- GLSL hat Probleme
- SNIPPET_CREATION_TIME:
- 23.09.2023 15:21:58
- SNIPPET_PRUNE_TIME:
- 22.12.2023 14:21:58
- SNIPPET_TEXT:
-
- [ 81.735] (II) Axis 0 value 1013 is outside expected range [1257, 5987]
- See https://wayland.freedesktop.org/libinput/doc/1.22.1/absolute_coordinate_ranges.html for details
- [ 81.750] (EE) event6 - SynPS/2 Synaptics TouchPad: kernel bug: Touch jump detected and discarded.
- See https://wayland.freedesktop.org/libinput/doc/1.22.1/touchpad-jumping-cursors.html for details
- [ 461.125] (EE) event6 - SynPS/2 Synaptics TouchPad: kernel bug: Touch jump detected and discarded.
- See https://wayland.freedesktop.org/libinput/doc/1.22.1/touchpad-jumping-cursors.html for details
- [ 565.944] 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
- [ 565.944] 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)
- [ 565.944] (EE)
- Fatal server error:
- [ 565.944] (EE) GLSL compile failure
- [ 565.944] (EE)
- [ 565.944] (EE)
- Please consult the The X.Org Foundation support
- at http://wiki.x.org
- for help.
- [ 565.944] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
- [ 565.944] (EE)
- [ 565.944] (II) AIGLX: Suspending AIGLX clients for VT switch
- [ 565.999] (EE) Server terminated with error (1). Closing log file.
Quellcode
Hier kannst du den Code kopieren und ihn in deinen bevorzugten Editor einfügen. PASTEBIN_DOWNLOAD_SNIPPET_EXPLAIN