WebPlatformForEmbedded / WPEWebKit

WPE WebKit port (downstream)
213 stars 140 forks source link

Cannot launch Cog or MiniBrowser - EGLDisplay Initialization failed: EGL_NOT_INITIALIZED #625

Closed trarbr closed 1 year ago

trarbr commented 5 years ago

Hi. I am new to WPE and I am trying to build it to run it in Docker containers on various devices (currently limited to x86 - Intel Compute Stick STK1AW32SC and Intel NUC BLKNUC7i3DNK2E). The devices run a minimal Linux setup.

I am using Debian Buster, libwpe 1.2.1, wpebackend-fdo 1.2.2, wpewebkit 2.24.3 and cog 0.3.1. I can start weston fine, and the weston-simple-egl demo runs well. But when I try to start MiniBrowser or Cog, they fail with this error: EGLDisplay Initialization failed: EGL_NOT_INITIALIZED.

My Dockerfile is as follows:

FROM debian:buster

WORKDIR /root

# To download, extract and compile libwpe
RUN apt-get update && \
        apt-get install -y \
        wget \
        xz-utils \
        cmake \
        g++ \
        ninja-build \
        libegl1-mesa-dev \
        mesa-common-dev \
        pkg-config \
        libxkbcommon-dev

RUN wget https://wpewebkit.org/releases/libwpe-1.2.1.tar.xz && \
        tar xf libwpe-1.2.1.tar.xz && \
        mkdir libwpe-1.2.1/build && \
        cd libwpe-1.2.1/build/ && \
        cmake -GNinja .. && \
        ninja && \
        ninja install

# Additional build dependencies for wpebackend-fdo
RUN apt-get install -y \
        libglib2.0-dev

RUN wget https://wpewebkit.org/releases/wpebackend-fdo-1.2.2.tar.xz && \
        tar xf wpebackend-fdo-1.2.2.tar.xz && \
        mkdir wpebackend-fdo-1.2.2/build && \
        cd wpebackend-fdo-1.2.2/build/ && \
        cmake -GNinja .. && \
        ninja && \
        ninja install

# Additional build dependencies for wpewebkit
RUN apt-get install -y \
        ruby-dev \
        libcairo2-dev \
        libicu-dev \
        libjpeg-dev \
        libepoxy-dev \
        libgcrypt20-dev \
        libsoup2.4-dev \
        libsqlite3-dev \
        libwebp-dev \
        libopenjp2-7-dev \
        libwoff-dev \
        libtasn1-6-dev \
        libxslt1-dev \
        libgstreamer1.0-dev \
        libgstreamer-plugins-base1.0-dev \
        libgstreamer-plugins-bad1.0-dev \
        gperf \
        libharfbuzz-dev \
        libgbm-dev \
        wayland-protocols

RUN wget https://wpewebkit.org/releases/wpewebkit-2.24.3.tar.xz && \
        tar xf wpewebkit-2.24.3.tar.xz && \
        mkdir wpewebkit-2.24.3/build && \
        cd wpewebkit-2.24.3/build/ && \
        cmake -DPORT=WPE -DENABLE_MINIBROWSER=ON -DCMAKE_BUILD_TYPE=Release -GNinja .. && \
        ninja && \
        ninja install

RUN wget https://github.com/Igalia/cog/releases/download/v0.3.1/cog-0.3.1.tar.xz && \
        tar xf cog-0.3.1.tar.xz && \
        mkdir cog-0.3.1/build && \
        cd cog-0.3.1/build/ && \
        # Run ldconfig to make sure we pick up libraries compiled earlier
        ldconfig && \
        cmake .. && \
        make && \
        make install

RUN apt-get install -y weston

I run the container as privileged (docker run --privileged -it -v /dev:/dev my-wpe-image /bin/bash) and run the following commands in the container:

export XDG_RUNTIME_DIR=/tmp/weston
export WAYLAND_DEBUG=1
weston --backend=fbdev-backend.so --tty=7 --device=/dev/fb0 &
/usr/local/libexec/wpe-webkit-1.0/MiniBrowser https://www.google.com

The Wayland debug output looks like this:

[625434.383]  -> wl_display@1.get_registry(new id wl_registry@2)
[625434.414]  -> wl_display@1.sync(new id wl_callback@3)
[625434.446] wl_display@1.get_registry(new id wl_registry@2)
[625434.471]  -> wl_registry@2.global(1, "wl_compositor", 4)
[625434.483]  -> wl_registry@2.global(2, "wl_subcompositor", 1)
[625434.494]  -> wl_registry@2.global(3, "wp_viewporter", 1)
[625434.508]  -> wl_registry@2.global(4, "wp_presentation", 1)
[625434.520]  -> wl_registry@2.global(5, "zwp_relative_pointer_manager_v1", 1)
[625434.533]  -> wl_registry@2.global(6, "zwp_pointer_constraints_v1", 1)
[625434.542]  -> wl_registry@2.global(7, "zwp_input_timestamps_manager_v1", 1)
[625434.553]  -> wl_registry@2.global(8, "wl_data_device_manager", 3)
[625434.565]  -> wl_registry@2.global(9, "wl_shm", 1)
[625434.576]  -> wl_registry@2.global(10, "wl_output", 3)
[625434.589]  -> wl_registry@2.global(11, "zwp_input_panel_v1", 1)
[625434.601]  -> wl_registry@2.global(12, "zwp_text_input_manager_v1", 1)
[625434.611]  -> wl_registry@2.global(13, "zxdg_shell_v6", 1)
[625434.622]  -> wl_registry@2.global(14, "wl_shell", 1)
[625434.638]  -> wl_registry@2.global(15, "weston_desktop_shell", 1)
[625434.653]  -> wl_registry@2.global(16, "weston_screenshooter", 1)
[625434.666] wl_display@1.sync(new id wl_callback@3)
[625434.677]  -> wl_callback@3.done(3)
[625434.686]  -> wl_display@1.delete_id(3)
[625434.741] wl_display@1.delete_id(3)
[625434.788] wl_registry@2.global(1, "wl_compositor", 4)
[625434.827] wl_registry@2.global(2, "wl_subcompositor", 1)
[625434.845] wl_registry@2.global(3, "wp_viewporter", 1)
[625434.857] wl_registry@2.global(4, "wp_presentation", 1)
[625434.869] wl_registry@2.global(5, "zwp_relative_pointer_manager_v1", 1)
[625434.881] wl_registry@2.global(6, "zwp_pointer_constraints_v1", 1)
[625434.895] wl_registry@2.global(7, "zwp_input_timestamps_manager_v1", 1)
[625434.907] wl_registry@2.global(8, "wl_data_device_manager", 3)
[625434.919] wl_registry@2.global(9, "wl_shm", 1)
[625434.931] wl_registry@2.global(10, "wl_output", 3)
[625434.943] wl_registry@2.global(11, "zwp_input_panel_v1", 1)
[625434.955] wl_registry@2.global(12, "zwp_text_input_manager_v1", 1)
[625434.970] wl_registry@2.global(13, "zxdg_shell_v6", 1)
[625434.985] wl_registry@2.global(14, "wl_shell", 1)
[625434.998] wl_registry@2.global(15, "weston_desktop_shell", 1)
[625435.016] wl_registry@2.global(16, "weston_screenshooter", 1)
[625435.026] wl_callback@3.done(3)
[625435.041]  -> wl_display@1.get_registry(new id wl_registry@3)
[625435.055]  -> wl_display@1.sync(new id wl_callback@4)
[625435.110] wl_display@1.get_registry(new id wl_registry@3)
[625435.126]  -> wl_registry@3.global(1, "wl_compositor", 4)
[625435.142]  -> wl_registry@3.global(2, "wl_subcompositor", 1)
[625435.158]  -> wl_registry@3.global(3, "wp_viewporter", 1)
[625435.168]  -> wl_registry@3.global(4, "wp_presentation", 1)
[625435.177]  -> wl_registry@3.global(5, "zwp_relative_pointer_manager_v1", 1)
[625435.186]  -> wl_registry@3.global(6, "zwp_pointer_constraints_v1", 1)
[625435.194]  -> wl_registry@3.global(7, "zwp_input_timestamps_manager_v1", 1)
[625435.206]  -> wl_registry@3.global(8, "wl_data_device_manager", 3)
[625435.216]  -> wl_registry@3.global(9, "wl_shm", 1)
[625435.226]  -> wl_registry@3.global(10, "wl_output", 3)
[625435.237]  -> wl_registry@3.global(11, "zwp_input_panel_v1", 1)
[625435.247]  -> wl_registry@3.global(12, "zwp_text_input_manager_v1", 1)
[625435.257]  -> wl_registry@3.global(13, "zxdg_shell_v6", 1)
[625435.265]  -> wl_registry@3.global(14, "wl_shell", 1)
[625435.272]  -> wl_registry@3.global(15, "weston_desktop_shell", 1)
[625435.280]  -> wl_registry@3.global(16, "weston_screenshooter", 1)
[625435.289] wl_display@1.sync(new id wl_callback@4)
[625435.295]  -> wl_callback@4.done(3)
[625435.299]  -> wl_display@1.delete_id(4)
[625435.326] wl_display@1.delete_id(4)
[625435.343] wl_registry@3.global(1, "wl_compositor", 4)
[625435.362] wl_registry@3.global(2, "wl_subcompositor", 1)
[625435.380] wl_registry@3.global(3, "wp_viewporter", 1)
[625435.398] wl_registry@3.global(4, "wp_presentation", 1)
[625435.415] wl_registry@3.global(5, "zwp_relative_pointer_manager_v1", 1)
[625435.427] wl_registry@3.global(6, "zwp_pointer_constraints_v1", 1)
[625435.442] wl_registry@3.global(7, "zwp_input_timestamps_manager_v1", 1)
[625435.461] wl_registry@3.global(8, "wl_data_device_manager", 3)
[625435.479] wl_registry@3.global(9, "wl_shm", 1)
[625435.498]  -> wl_registry@3.bind(9, "wl_shm", 1, new id [unknown]@5)
[625435.535] wl_registry@3.global(10, "wl_output", 3)
[625435.550] wl_registry@3.global(11, "zwp_input_panel_v1", 1)
[625435.568] wl_registry@3.global(12, "zwp_text_input_manager_v1", 1)
[625435.579] wl_registry@3.global(13, "zxdg_shell_v6", 1)
[625435.599] wl_registry@3.global(14, "wl_shell", 1)
[625435.614] wl_registry@3.global(15, "weston_desktop_shell", 1)
[625435.633] wl_registry@3.global(16, "weston_screenshooter", 1)
[625435.648] wl_callback@4.done(3)
[625435.657]  -> wl_display@1.sync(new id wl_callback@4)
[625435.704] wl_registry@3.bind(9, "wl_shm", 1, new id [unknown]@5)
[625435.729]  -> wl_shm@5.format(0)
[625435.737]  -> wl_shm@5.format(1)
[625435.743]  -> wl_shm@5.format(909199186)
[625435.751] wl_display@1.sync(new id wl_callback@4)
[625435.762]  -> wl_callback@4.done(3)
[625435.769]  -> wl_display@1.delete_id(4)
[625435.815] wl_display@1.delete_id(4)
[625435.830] wl_shm@5.format(0)
[625435.839] wl_shm@5.format(1)
[625435.847] wl_shm@5.format(909199186)
[625435.856] wl_callback@4.done(3)
[625529.855]  -> wl_display@1.get_registry(new id wl_registry@4)
[625529.882]  -> wl_display@1.sync(new id wl_callback@6)
[625529.955] wl_display@1.get_registry(new id wl_registry@4)
[625529.978]  -> wl_registry@4.global(1, "wl_compositor", 4)
[625529.996]  -> wl_registry@4.global(2, "wl_subcompositor", 1)
[625530.008]  -> wl_registry@4.global(3, "wp_viewporter", 1)
[625530.023]  -> wl_registry@4.global(4, "wp_presentation", 1)
[625530.035]  -> wl_registry@4.global(5, "zwp_relative_pointer_manager_v1", 1)
[625530.049]  -> wl_registry@4.global(6, "zwp_pointer_constraints_v1", 1)
[625530.061]  -> wl_registry@4.global(7, "zwp_input_timestamps_manager_v1", 1)
[625530.076]  -> wl_registry@4.global(8, "wl_data_device_manager", 3)
[625530.094]  -> wl_registry@4.global(9, "wl_shm", 1)
[625530.111]  -> wl_registry@4.global(10, "wl_output", 3)
[625530.122]  -> wl_registry@4.global(11, "zwp_input_panel_v1", 1)
[625530.135]  -> wl_registry@4.global(12, "zwp_text_input_manager_v1", 1)
[625530.148]  -> wl_registry@4.global(13, "zxdg_shell_v6", 1)
[625530.160]  -> wl_registry@4.global(14, "wl_shell", 1)
[625530.172]  -> wl_registry@4.global(15, "weston_desktop_shell", 1)
[625530.191]  -> wl_registry@4.global(16, "weston_screenshooter", 1)
[625530.207] wl_display@1.sync(new id wl_callback@6)
[625530.217]  -> wl_callback@6.done(3)
[625530.226]  -> wl_display@1.delete_id(6)
[625530.266] wl_display@1.delete_id(6)
[625530.281] wl_registry@4.global(1, "wl_compositor", 4)
[625530.296]  -> wl_registry@4.bind(1, "wl_compositor", 1, new id [unknown]@7)
[625530.313] wl_registry@4.global(2, "wl_subcompositor", 1)
[625530.325] wl_registry@4.global(3, "wp_viewporter", 1)
[625530.336] wl_registry@4.global(4, "wp_presentation", 1)
[625530.346] wl_registry@4.global(5, "zwp_relative_pointer_manager_v1", 1)
[625530.357] wl_registry@4.global(6, "zwp_pointer_constraints_v1", 1)
[625530.367] wl_registry@4.global(7, "zwp_input_timestamps_manager_v1", 1)
[625530.377] wl_registry@4.global(8, "wl_data_device_manager", 3)
[625530.385] wl_registry@4.global(9, "wl_shm", 1)
[625530.393] wl_registry@4.global(10, "wl_output", 3)
[625530.401] wl_registry@4.global(11, "zwp_input_panel_v1", 1)
[625530.408] wl_registry@4.global(12, "zwp_text_input_manager_v1", 1)
[625530.416] wl_registry@4.global(13, "zxdg_shell_v6", 1)
[625530.431]  -> wl_registry@4.bind(13, "zxdg_shell_v6", 1, new id [unknown]@8)
[625530.444] wl_registry@4.global(14, "wl_shell", 1)
[625530.453] wl_registry@4.global(15, "weston_desktop_shell", 1)
[625530.461] wl_registry@4.global(16, "weston_screenshooter", 1)
[625530.469] wl_callback@6.done(3)
[625530.502]  -> wl_compositor@7.create_surface(new id wl_surface@6)
[625530.511]  -> zxdg_shell_v6@8.get_xdg_surface(new id zxdg_surface_v6@9, wl_surface@6)
[625530.521]  -> zxdg_surface_v6@9.get_toplevel(new id zxdg_toplevel_v6@10)
[625530.529]  -> zxdg_toplevel_v6@10.set_title("WPE")
[625530.536]  -> wl_surface@6.commit()
[625533.597]  -> wl_shm@5.create_pool(new id wl_shm_pool@11, fd 7, 3686400)
[625533.629]  -> wl_shm_pool@11.create_buffer(new id wl_buffer@12, 0, 1280, 720, 5120, 0)
[625533.659]  -> wl_shm_pool@11.destroy()
[625562.247] wl_registry@4.bind(1, "wl_compositor", 1, new id [unknown]@7)
[625562.879] wl_registry@4.bind(13, "zxdg_shell_v6", 1, new id [unknown]@8)
[625562.967] wl_compositor@7.create_surface(new id wl_surface@6)
[625563.039] zxdg_shell_v6@8.get_xdg_surface(new id zxdg_surface_v6@9, wl_surface@6)
[625563.088] zxdg_surface_v6@9.get_toplevel(new id zxdg_toplevel_v6@10)
[625563.118] zxdg_toplevel_v6@10.set_title("WPE")
[625563.144] wl_surface@6.commit()
[625563.180] wl_shm@5.create_pool(new id wl_shm_pool@11, fd 28, 3686400)
[625563.279] wl_shm_pool@11.create_buffer(new id wl_buffer@12, 0, 1280, 720, 5120, 0)
[625563.843] wl_shm_pool@11.destroy()
[625564.152]  -> wl_display@1.delete_id(11)
[625564.181]  -> zxdg_toplevel_v6@10.configure(0, 0, array)
[625564.195]  -> zxdg_surface_v6@9.configure(4)
[625564.685] wl_display@1.delete_id(11)
[625565.292] zxdg_toplevel_v6@10.configure(0, 0, array)
[625566.405] zxdg_surface_v6@9.configure(4)
[625566.998]  -> zxdg_surface_v6@9.ack_configure(4)
[625567.517] zxdg_surface_v6@9.ack_configure(4)
[625570.770]  -> wl_display@1.get_registry(new id wl_registry@2)
[625570.818]  -> wl_display@1.sync(new id wl_callback@3)
[625570.883]  -> wl_display@1.get_registry(new id wl_registry@4)
[625571.643]  -> wl_display@1.sync(new id wl_callback@5)
[625571.709]  -> wl_display@1.get_registry(new id wl_registry@6)
[625571.812]  -> wl_display@1.sync(new id wl_callback@7)
EGLDisplay Initialization failed: EGL_NOT_INITIALIZED
[625595.046]  -> wl_display@1.get_registry(new id wl_registry@8)
[625595.072]  -> wl_display@1.sync(new id wl_callback@9)

And in dmesg I can see the following:

[ 1451.882989] eadedCompositor[2146]: segfault at 0 ip 00007fe669a82274 sp 00007fe60f3fe690 error 4 in libwayland-client.so.0.3.0[7fe669a81000+6000]
[ 1451.882996] Code: 29 ac 24 50 01 00 00 0f 29 b4 24 60 01 00 00 0f 29 bc 24 70 01 00 00 64 48 8b 04 25 28 00 00 00 48 89 84 24 c8 00 00 00 31 c0 <48> 8b 13 4c 8d 6c 24 20 48 8d 4c 24 08 48 8d 84 24 b0 01 00 00 c7
aperezdc commented 5 years ago

@trarbr You will need to use Weston's drm-backend.so (instead of fbdev-backend.so). Could you please give it a try with that?

trarbr commented 5 years ago

Thank you @aperezdc. I get a segfault when I try to run weston --backend=drm-backend.so --tty=4 --device=/dev/fb0:

Date: 2019-10-21 UTC
[06:55:31.393] weston 5.0.0
               https://wayland.freedesktop.org
               Bug reports to: https://gitlab.freedesktop.org/wayland/weston/issues/
               Build: unknown (not built from git or tarball)
[06:55:31.393] Command line: weston --backend=drm-backend.so --tty=4 --device=/dev/fb0
[06:55:31.393] OS: Linux, 4.19.29, #1 SMP PREEMPT Thu Aug 29 12:52:47 UTC 2019, x86_64
[06:55:31.393] warning: XDG_RUNTIME_DIR "/tmp/weston" is not configured
correctly.  Unix access mode must be 0700 (current mode is 755),
and must be owned by the user (current owner is UID 0).
Refer to your distribution on how to get it, or
http://www.freedesktop.org/wiki/Specifications/basedir-spec
on how to implement it.
[06:55:31.393] Starting with no config file.
[06:55:31.393] Output repaint window is 7 ms maximum.
[06:55:31.393] Loading module '/usr/lib/x86_64-linux-gnu/libweston-5/drm-backend.so'
[06:55:31.398] initializing drm backend
[06:55:31.398] logind: not running in a systemd session
[06:55:31.398] logind: cannot setup systemd-logind helper (-2), using legacy fallback
[06:55:31.412] using /dev/dri/card0
[06:55:31.412] DRM: supports universal planes
[06:55:31.412] DRM: supports atomic modesetting
[06:55:31.412] DRM: supports picture aspect ratio
[06:55:31.412] Loading module '/usr/lib/x86_64-linux-gnu/libweston-5/gl-renderer.so'
[06:55:31.446] EGL client extensions: EGL_EXT_device_base
               EGL_EXT_device_enumeration EGL_EXT_device_query
               EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses
               EGL_EXT_client_extensions EGL_KHR_debug
               EGL_EXT_platform_wayland EGL_EXT_platform_x11
               EGL_MESA_platform_gbm EGL_MESA_platform_surfaceless
[06:55:31.451] warning: neither EGL_EXT_swap_buffers_with_damage or EGL_KHR_swap_buffers_with_damage is supported. Performance could be affected.
[06:55:31.451] EGL_KHR_surfaceless_context available
[06:55:31.462] EGL version: 1.4
[06:55:31.462] EGL vendor: Mesa Project
[06:55:31.462] EGL client APIs: OpenGL OpenGL_ES
[06:55:31.462] EGL extensions: EGL_ANDROID_blob_cache
               EGL_ANDROID_native_fence_sync EGL_EXT_buffer_age
               EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import
               EGL_EXT_image_dma_buf_import_modifiers EGL_IMG_context_priority
               EGL_KHR_config_attribs EGL_KHR_create_context
               EGL_KHR_create_context_no_error EGL_KHR_fence_sync
               EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace
               EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image
               EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image
               EGL_KHR_image EGL_KHR_image_base EGL_KHR_image_pixmap
               EGL_KHR_no_config_context EGL_KHR_reusable_sync
               EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float
               EGL_KHR_wait_sync EGL_MESA_configless_context
               EGL_MESA_drm_image EGL_MESA_image_dma_buf_export
               EGL_WL_bind_wayland_display
[06:55:31.462] GL version: OpenGL ES 3.1 Mesa 18.3.6
[06:55:31.462] GLSL version: OpenGL ES GLSL ES 3.10
[06:55:31.462] GL vendor: Intel Open Source Technology Center
[06:55:31.462] GL renderer: Mesa DRI Intel(R) HD Graphics (Cherrytrail)
[06:55:31.463] GL extensions: GL_EXT_blend_minmax GL_EXT_multi_draw_arrays
               GL_EXT_texture_filter_anisotropic
               GL_EXT_texture_compression_s3tc GL_EXT_occlusion_query_boolean
               GL_EXT_texture_compression_dxt1 GL_EXT_texture_format_BGRA8888
               GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24
               GL_OES_element_index_uint GL_OES_fbo_render_mipmap
               GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives
               GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_float
               GL_OES_texture_float_linear GL_OES_texture_half_float
               GL_OES_texture_half_float_linear GL_OES_texture_npot
               GL_OES_vertex_half_float GL_EXT_texture_sRGB_decode
               GL_OES_EGL_image GL_OES_depth_texture
               GL_OES_packed_depth_stencil GL_EXT_texture_type_2_10_10_10_REV
               GL_OES_get_program_binary GL_APPLE_texture_max_level
               GL_EXT_discard_framebuffer GL_EXT_read_format_bgra
               GL_EXT_frag_depth GL_NV_fbo_color_attachments
               GL_OES_EGL_image_external GL_OES_EGL_sync
               GL_OES_vertex_array_object GL_OES_viewport_array
               GL_ANGLE_texture_compression_dxt3
               GL_ANGLE_texture_compression_dxt5 GL_EXT_robustness
               GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers
               GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil
               GL_NV_read_stencil GL_EXT_draw_buffers GL_EXT_map_buffer_range
               GL_KHR_debug GL_KHR_robustness GL_OES_depth_texture_cube_map
               GL_OES_required_internalformat GL_OES_surfaceless_context
               GL_EXT_color_buffer_float GL_EXT_separate_shader_objects
               GL_EXT_shader_integer_mix GL_EXT_tessellation_point_size
               GL_EXT_tessellation_shader GL_INTEL_performance_query
               GL_EXT_base_instance GL_EXT_compressed_ETC1_RGB8_sub_texture
               GL_EXT_copy_image GL_EXT_draw_buffers_indexed
               GL_EXT_draw_elements_base_vertex GL_EXT_gpu_shader5
               GL_EXT_polygon_offset_clamp GL_EXT_primitive_bounding_box
               GL_EXT_render_snorm GL_EXT_shader_io_blocks
               GL_EXT_texture_border_clamp GL_EXT_texture_buffer
               GL_EXT_texture_cube_map_array GL_EXT_texture_norm16
               GL_KHR_blend_equation_advanced GL_KHR_context_flush_control
               GL_KHR_robust_buffer_access_behavior GL_NV_image_formats
               GL_OES_copy_image GL_OES_draw_buffers_indexed
               GL_OES_draw_elements_base_vertex GL_OES_gpu_shader5
               GL_OES_primitive_bounding_box GL_OES_sample_shading
               GL_OES_sample_variables GL_OES_shader_io_blocks
               GL_OES_shader_multisample_interpolation
               GL_OES_tessellation_point_size GL_OES_tessellation_shader
               GL_OES_texture_border_clamp GL_OES_texture_buffer
               GL_OES_texture_cube_map_array GL_OES_texture_stencil8
               GL_OES_texture_storage_multisample_2d_array GL_OES_texture_view
               GL_EXT_blend_func_extended GL_EXT_buffer_storage
               GL_EXT_geometry_point_size GL_EXT_geometry_shader
               GL_EXT_shader_samples_identical GL_KHR_no_error
               GL_OES_EGL_image_external_essl3 GL_OES_geometry_point_size
               GL_OES_geometry_shader GL_OES_shader_image_atomic
               GL_EXT_clip_cull_distance GL_EXT_disjoint_timer_query
               GL_MESA_shader_integer_functions
               GL_EXT_shader_framebuffer_fetch_non_coherent
               GL_MESA_framebuffer_flip_y
[06:55:31.463] GL ES 2 renderer features:
               read-back format: BGRA
               wl_shm sub-image to texture: yes
               EGL Wayland extension: yes
[06:55:31.471] warning: no input devices on entering Weston. Possible causes:
    - no permissions to read /dev/input/event*
    - seats misconfigured (Weston backend option 'seat', udev device property ID_SEAT)
[06:55:31.471] failed to create input devices
Segmentation fault

I dmesg I see the following message:

[  552.176754] weston[783]: segfault at 7fca26e6a840 ip 00007fca26e6a840 sp 00007ffce23c61c8 error 14 in libglapi.so.0.0.0[7fca2763a000+b000]
[  552.176936] Code: Bad RIP value.
modeveci commented 1 year ago

Inactive ticket for long time!

Closing the ticket; if you think it is still relevant and/or valid for the latest version/s. Please do not hesitate to re-open!