NoPaste

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:
  1. [    81.735] (II) Axis 0 value 1013 is outside expected range [1257, 5987]
  2. See https://wayland.freedesktop.org/libinput/doc/1.22.1/absolute_coordinate_ranges.html for details
  3. [    81.750] (EE) event6  - SynPS/2 Synaptics TouchPad: kernel bug: Touch jump detected and discarded.
  4. See https://wayland.freedesktop.org/libinput/doc/1.22.1/touchpad-jumping-cursors.html for details
  5. [   461.125] (EE) event6  - SynPS/2 Synaptics TouchPad: kernel bug: Touch jump detected and discarded.
  6. See https://wayland.freedesktop.org/libinput/doc/1.22.1/touchpad-jumping-cursors.html for details
  7. [   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
  8.  
  9. [   565.944] Program source:
  10. #version 130
  11. #ifdef GL_ES
  12. precision mediump float;
  13. #endif
  14. #define RepeatNone                            0
  15. #define RepeatNormal                     1
  16. #define RepeatPad                        2
  17. #define RepeatReflect                    3
  18. #define RepeatFix                             10
  19. uniform int                     source_repeat_mode;
  20. uniform int                     mask_repeat_mode;
  21. vec2 rel_tex_coord(vec2 texture, vec4 wh, int repeat)
  22. {
  23.         vec2 rel_tex;
  24.         rel_tex = texture * wh.xy;
  25.         if (repeat == RepeatFix + RepeatNone)
  26.                 return rel_tex;
  27.         else if (repeat == RepeatFix + RepeatNormal)
  28.                 rel_tex = floor(rel_tex) + (fract(rel_tex) / wh.xy);
  29.         else if (repeat == RepeatFix + RepeatPad) {
  30.                 if (rel_tex.x >= 1.0)
  31.                         rel_tex.x = 1.0 - wh.z * wh.x / 2.;
  32.                 else if (rel_tex.x < 0.0)
  33.                         rel_tex.x = 0.0;
  34.                 if (rel_tex.y >= 1.0)
  35.                         rel_tex.y = 1.0 - wh.w * wh.y / 2.;
  36.                 else if (rel_tex.y < 0.0)
  37.                         rel_tex.y = 0.0;
  38.                 rel_tex = rel_tex / wh.xy;
  39.         } else if (repeat == RepeatFix + RepeatReflect) {
  40.                 if ((1.0 - mod(abs(floor(rel_tex.x)), 2.0)) < 0.001)
  41. [   565.944] (EE)
  42. Fatal server error:
  43. [   565.944] (EE) GLSL compile failure
  44. [   565.944] (EE)
  45. [   565.944] (EE)
  46. Please consult the The X.Org Foundation support
  47.          at http://wiki.x.org
  48.  for help.
  49. [   565.944] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
  50. [   565.944] (EE)
  51. [   565.944] (II) AIGLX: Suspending AIGLX clients for VT switch
  52. [   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