You are not logged in.

#1 2020-07-31 02:02:22

qiuweikang
Member
Registered: 2020-07-31
Posts: 19

[SOLVED] Failed to start picom with vsync_opengl_swc_init error

When I start picom, which is

picom

command in my terminal, I got

[ 07/30/2020 13:48:19.422 vsync_opengl_swc_init ERROR ] Failed to load a swap control extension.
[ 07/30/2020 13:48:19.422 session_init FATAL ERROR ] Failed to initialize the backend

sometimes it is

[ 07/31/2020 01:57:21.479 vsync_init ERROR ] No supported vsync method found for this backend
[ 07/31/2020 01:57:21.479 session_init FATAL ERROR ] Failed to initialize the backend

and if I set ``vsync=false``, I got

[ 07/30/2020 17:34:06.312 x_fence_sync ERROR ] Failed to trigger the fence (X error 136 XSyncBadFence request 134 minor 15 serial 1922)
[ 07/30/2020 17:34:06.312 paint_all ERROR ] x_fence_sync failed, xrender-sync-fence will be disabled from now on.
GPU and drivers
 NVidia RTX 2080Ti, nvidia-drivers 450.57

I do not have ``glxinfo`` command. I only have ``vglxinfo``

vglxinfo -B

name of display: :0
display: :0  screen: 0
direct rendering: Yes
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: VMware, Inc. (0xffffffff)
    Device: llvmpipe (LLVM 10.0.0, 256 bits) (0xffffffff)
    Version: 20.1.4
    Accelerated: no
    Video memory: 32044MB
    Unified memory: no
    Preferred profile: core (0x1)
    Max core profile version: 3.3
    Max compat profile version: 3.1
    Max GLES1 profile version: 1.1
    Max GLES[23] profile version: 3.1
OpenGL vendor string: VMware, Inc.
OpenGL renderer string: llvmpipe (LLVM 10.0.0, 256 bits)
OpenGL core profile version string: 3.3 (Core Profile) Mesa 20.1.4
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile

OpenGL version string: 3.1 Mesa 20.1.4
OpenGL shading language version string: 1.40
OpenGL context flags: (none)

OpenGL ES profile version string: OpenGL ES 3.1 Mesa 20.1.4
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.10
Environment
picom version

vgit-e553e

Configuration

I use the default configuration.

# Thank you code_nomad: http://9m.no/ꪯ鵞
# and Arch Wiki contributors: https://wiki.archlinux.org/index.php/Compton

#################################
#
# Backend
#
#################################

# Backend to use: "xrender" or "glx".
# GLX backend is typically much faster but depends on a sane driver.
backend = "glx";

#################################
#
# GLX backend
#
#################################

glx-no-stencil = true;

# GLX backend: Copy unmodified regions from front buffer instead of redrawing them all.
# My tests with nvidia-drivers show a 10% decrease in performance when the whole screen is modified,
# but a 20% increase when only 1/4 is.
# My tests on nouveau show terrible slowdown.
glx-copy-from-front = false;

# GLX backend: Use MESA_copy_sub_buffer to do partial screen update.
# My tests on nouveau shows a 200% performance boost when only 1/4 of the screen is updated.
# May break VSync and is not available on some drivers.
# Overrides --glx-copy-from-front.
# glx-use-copysubbuffermesa = true;

# GLX backend: Avoid rebinding pixmap on window damage.
# Probably could improve performance on rapid window content changes, but is known to break things on some drivers (LLVMpipe).
# Recommended if it works.
# glx-no-rebind-pixmap = true;

# GLX backend: GLX buffer swap method we assume.
# Could be undefined (0), copy (1), exchange (2), 3-6, or buffer-age (-1).
# undefined is the slowest and the safest, and the default value.
# copy is fastest, but may fail on some drivers,
# 2-6 are gradually slower but safer (6 is still faster than 0).
# Usually, double buffer means 2, triple buffer means 3.
# buffer-age means auto-detect using GLX_EXT_buffer_age, supported by some drivers.
# Useless with --glx-use-copysubbuffermesa.
# Partially breaks --resize-damage.
# Defaults to undefined.
#glx-swap-method = "undefined";

#################################
#
# Shadows
#
#################################

# Enabled client-side shadows on windows.
shadow = true;
# The blur radius for shadows. (default 12)
shadow-radius = 5;
# The left offset for shadows. (default -15)
shadow-offset-x = -5;
# The top offset for shadows. (default -15)
shadow-offset-y = -5;
# The translucency for shadows. (default .75)
shadow-opacity = 0.5;

# Set if you want different colour shadows
# shadow-red = 0.0;
# shadow-green = 0.0;
# shadow-blue = 0.0;

# The shadow exclude options are helpful if you have shadows enabled. Due to the way picom draws its shadows, certain applications will have visual glitches
# (most applications are fine, only apps that do weird things with xshapes or argb are affected).
# This list includes all the affected apps I found in my testing. The "! name~=''" part excludes shadows on any "Unknown" windows, this prevents a visual glitch with the XFWM alt tab switcher.
shadow-exclude = [
    "! name~=''",
    "name = 'Notification'",
    "name = 'Plank'",
    "name = 'Docky'",
    "name = 'Kupfer'",
    "name = 'xfce4-notifyd'",
    "name = 'cpt_frame_window'",
    "name *= 'VLC'",
    "name *= 'compton'",
    "name *= 'picom'",
    "name *= 'Chromium'",
    "name *= 'Chrome'",
    "class_g = 'Firefox' && argb",
    "class_g = 'Conky'",
    "class_g = 'Kupfer'",
    "class_g = 'Synapse'",
    "class_g ?= 'Notify-osd'",
    "class_g ?= 'Cairo-dock'",
    "class_g ?= 'Xfce4-notifyd'",
    "class_g ?= 'Xfce4-power-manager'",
    "_GTK_FRAME_EXTENTS@:c",
    "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
];
# Avoid drawing shadow on all shaped windows (see also: --detect-rounded-corners)
shadow-ignore-shaped = false;

#################################
#
# Opacity
#
#################################

inactive-opacity = 1;
active-opacity = 1;
frame-opacity = 1;
inactive-opacity-override = false;

# Dim inactive windows. (0.0 - 1.0)
# inactive-dim = 0.2;
# Do not let dimness adjust based on window opacity.
# inactive-dim-fixed = true;
# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
# blur-background = true;
# Blur background of opaque windows with transparent frames as well.
# blur-background-frame = true;
# Do not let blur radius adjust based on window opacity.
blur-background-fixed = false;
blur-background-exclude = [
    "window_type = 'dock'",
    "window_type = 'desktop'"
];

#################################
#
# Fading
#
#################################

# Fade windows during opacity changes.
fading = true;
# The time between steps in a fade in milliseconds. (default 10).
fade-delta = 4;
# Opacity change between steps while fading in. (default 0.028).
fade-in-step = 0.03;
# Opacity change between steps while fading out. (default 0.03).
fade-out-step = 0.03;
# Fade windows in/out when opening/closing
# no-fading-openclose = true;

# Specify a list of conditions of windows that should not be faded.
fade-exclude = [ ];

#################################
#
# Other
#
#################################

# Try to detect WM windows and mark them as active.
mark-wmwin-focused = true;
# Mark all non-WM but override-redirect windows active (e.g. menus).
mark-ovredir-focused = true;
# Use EWMH _NET_WM_ACTIVE_WINDOW to determine which window is focused instead of using FocusIn/Out events.
# Usually more reliable but depends on a EWMH-compliant WM.
use-ewmh-active-win = true;
# Detect rounded corners and treat them as rectangular when --shadow-ignore-shaped is on.
detect-rounded-corners = true;

# Detect _NET_WM_OPACITY on client windows, useful for window managers not passing _NET_WM_OPACITY of client windows to frame windows.
# This prevents opacity being ignored for some apps.
# For example without this enabled my xfce4-notifyd is 100% opacity no matter what.
detect-client-opacity = true;

# Specify refresh rate of the screen.
# If not specified or 0, picom will try detecting this with X RandR extension.
refresh-rate = 0;

# Vertical synchronization: match the refresh rate of the monitor
vsync = true;

# Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing.
# Reported to have no effect, though.
dbe = false;

# Limit picom to repaint at most once every 1 / refresh_rate second to boost performance.
# This should not be used with --vsync drm/opengl/opengl-oml as they essentially does --sw-opti's job already,
# unless you wish to specify a lower refresh rate than the actual value.
#sw-opti = true;

# Unredirect all windows if a full-screen opaque window is detected, to maximize performance for full-screen windows, like games.
# Known to cause flickering when redirecting/unredirecting windows.
unredir-if-possible = false;

# Specify a list of conditions of windows that should always be considered focused.
focus-exclude = [ ];

# Use WM_TRANSIENT_FOR to group windows, and consider windows in the same group focused at the same time.
detect-transient = true;
# Use WM_CLIENT_LEADER to group windows, and consider windows in the same group focused at the same time.
# WM_TRANSIENT_FOR has higher priority if --detect-transient is enabled, too.
detect-client-leader = true;

#################################
#
# Window type settings
#
#################################

wintypes:
{
    tooltip =
    {
        # fade: Fade the particular type of windows.
        fade = true;
        # shadow: Give those windows shadow
        shadow = false;
        # opacity: Default opacity for the type of windows.
        opacity = 0.85;
        # focus: Whether to always consider windows of this type focused.
        focus = true;
    };
};

######################
#
# XSync
# See: https://github.com/yshui/picom/commit/b18d46bcbdc35a3b5620d817dd46fbc76485c20d
#
######################

# Use X Sync fence to sync clients' draw calls. Needed on nvidia-drivers with GLX backend for some users.
xrender-sync-fence = true;

Please help me! I got crazy with this problem!

Last edited by qiuweikang (2020-07-31 14:36:51)

Offline

#2 2020-07-31 06:31:07

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

glxinfo is part of "mesa-demos"

    Vendor: VMware, Inc. (0xffffffff)
    Device: llvmpipe (LLVM 10.0.0, 256 bits) (0xffffffff)
    Version: 20.1.4
    Accelerated: no

You're not using the nvidia driver, sounds like some botched optimus setup.

Please see https://wiki.archlinux.org/index.php/NVIDIA_Optimus and post your xorg log and the output of lspci.

Offline

#3 2020-07-31 06:59:15

d_fajardo
Member
Registered: 2017-07-28
Posts: 1,563

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

This could be related to the ongoing bug with the nvidia-450 driver. kwin-x11 crashes with this driver but there are some indication in this KDE bug report that picom is affected as well.

Offline

#4 2020-07-31 12:35:06

qiuweikang
Member
Registered: 2020-07-31
Posts: 19

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

all right! thanks!

Offline

#5 2020-07-31 12:38:49

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

I severeyl doubt that this is a bug in the nvidia driver unless that specific bug first makes that the nvidia driver isn't used to begin with - what's not what I can grasp from the linked bug report.
Please install mesa-demos and dump the output of glxinfo and the other information requested in #2

Offline

#6 2020-07-31 12:51:27

qiuweikang
Member
Registered: 2020-07-31
Posts: 19

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

seth wrote:

I severeyl doubt that this is a bug in the nvidia driver unless that specific bug first makes that the nvidia driver isn't used to begin with - what's not what I can grasp from the linked bug report.
Please install mesa-demos and dump the output of glxinfo and the other information requested in #2

Thank you. Here's my glxinfo -B

name of display: :0
display: :0  screen: 0
direct rendering: Yes
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: VMware, Inc. (0xffffffff)
    Device: llvmpipe (LLVM 10.0.0, 256 bits) (0xffffffff)
    Version: 20.1.4
    Accelerated: no
    Video memory: 32044MB
    Unified memory: no
    Preferred profile: core (0x1)
    Max core profile version: 3.3
    Max compat profile version: 3.1
    Max GLES1 profile version: 1.1
    Max GLES[23] profile version: 3.1
OpenGL vendor string: VMware, Inc.
OpenGL renderer string: llvmpipe (LLVM 10.0.0, 256 bits)
OpenGL core profile version string: 3.3 (Core Profile) Mesa 20.1.4
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile

OpenGL version string: 3.1 Mesa 20.1.4
OpenGL shading language version string: 1.40
OpenGL context flags: (none)

OpenGL ES profile version string: OpenGL ES 3.1 Mesa 20.1.4
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.10

Offline

#7 2020-07-31 12:53:33

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

seth wrote:

and the other information requested in #2

seth earlier wrote:

Please see https://wiki.archlinux.org/index.php/NVIDIA_Optimus and post your xorg log and the output of lspci.

Offline

#8 2020-07-31 13:10:16

qiuweikang
Member
Registered: 2020-07-31
Posts: 19

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

That's my lspci

lspci | grep VGA
01:00.0 VGA compatible controller: NVIDIA Corporation TU102 [GeForce RTX 2080 Ti Rev. A] (rev a1)

But forgive I do not know what is xorg log means in NVIDIA_optimus. I am a newbie. I can only find a /var/log/xorg.0.log

[  1016.629] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[  1016.629] Build Operating System: Linux Arch Linux
[  1016.629] Current Operating System: Linux boltzmachine 5.7.10-arch1-1 #1 SMP PREEMPT Wed, 22 Jul 2020 19:57:42 +0000 x86_64
[  1016.629] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=1feea81c-f148-4084-900e-cd91dd96e2e8 rw loglevel=3 quiet
[  1016.629] Build Date: 05 May 2020  05:08:17AM
[  1016.629]  
[  1016.629] Current version of pixman: 0.40.0
[  1016.629] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1016.629] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1016.629] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jul 31 16:16:48 2020
[  1016.629] (==) Using config file: "/etc/X11/xorg.conf"
[  1016.629] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1016.629] (==) ServerLayout "Layout0"
[  1016.629] (**) |-->Screen "Screen0" (0)
[  1016.629] (**) |   |-->Monitor "Monitor0"
[  1016.629] (**) |   |-->Device "Device0"
[  1016.629] (**) |-->Input Device "Keyboard0"
[  1016.629] (**) |-->Input Device "Mouse0"
[  1016.629] (==) Automatically adding devices
[  1016.629] (==) Automatically enabling devices
[  1016.629] (==) Automatically adding GPU devices
[  1016.629] (==) Automatically binding GPU devices
[  1016.629] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  1016.629] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[  1016.629] 	Entry deleted from font path.
[  1016.629] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[  1016.629] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1016.629] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  1016.629] (WW) Disabling Keyboard0
[  1016.629] (WW) Disabling Mouse0
[  1016.629] (II) Module ABI versions:
[  1016.629] 	X.Org ANSI C Emulation: 0.4
[  1016.629] 	X.Org Video Driver: 24.1
[  1016.629] 	X.Org XInput driver : 24.1
[  1016.629] 	X.Org Server Extension : 10.0
[  1016.630] (++) using VT number 7

[  1016.630] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[  1016.631] (--) PCI:*(1@0:0:0) 10de:1e07:19da:1518 rev 161, Mem @ 0x54000000/16777216, 0x40000000/268435456, 0x52000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/131072
[  1016.631] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  1016.631] (II) LoadModule: "glx"
[  1016.631] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1016.631] (II) Module glx: vendor="X.Org Foundation"
[  1016.631] 	compiled for 1.20.8, module version = 1.0.0
[  1016.631] 	ABI class: X.Org Server Extension, version 10.0
[  1016.631] (II) LoadModule: "nvidia"
[  1016.631] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[  1016.631] (II) Module nvidia: vendor="NVIDIA Corporation"
[  1016.631] 	compiled for 1.6.99.901, module version = 1.0.0
[  1016.631] 	Module class: X.Org Video Driver
[  1016.631] (II) NVIDIA dlloader X Driver  450.57  Sun Jul  5 14:40:23 UTC 2020
[  1016.631] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  1016.632] (II) Loading sub module "fb"
[  1016.632] (II) LoadModule: "fb"
[  1016.632] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1016.632] (II) Module fb: vendor="X.Org Foundation"
[  1016.632] 	compiled for 1.20.8, module version = 1.0.0
[  1016.632] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1016.632] (II) Loading sub module "wfb"
[  1016.632] (II) LoadModule: "wfb"
[  1016.632] (II) Loading /usr/lib/xorg/modules/libwfb.so
[  1016.632] (II) Module wfb: vendor="X.Org Foundation"
[  1016.632] 	compiled for 1.20.8, module version = 1.0.0
[  1016.632] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1016.632] (II) Loading sub module "ramdac"
[  1016.632] (II) LoadModule: "ramdac"
[  1016.632] (II) Module "ramdac" already built-in
[  1016.632] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[  1016.632] (==) NVIDIA(0): RGB weight 888
[  1016.632] (==) NVIDIA(0): Default visual is TrueColor
[  1016.632] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[  1016.632] (**) NVIDIA(0): Enabling 2D acceleration
[  1016.632] (II) Loading sub module "glxserver_nvidia"
[  1016.632] (II) LoadModule: "glxserver_nvidia"
[  1016.632] (WW) Warning, couldn't open module glxserver_nvidia
[  1016.632] (EE) NVIDIA: Failed to load module "glxserver_nvidia" (module does not exist, 0)
[  1016.632] (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
[  1016.632] (EE) NVIDIA(0):     log file that the GLX module has been loaded in your X
[  1016.632] (EE) NVIDIA(0):     server, and that the module is the NVIDIA GLX module.  If
[  1016.632] (EE) NVIDIA(0):     you continue to encounter problems, Please try
[  1016.632] (EE) NVIDIA(0):     reinstalling the NVIDIA driver.
[  1016.632] (II) NVIDIA: The X server does not support PRIME Render Offload.
[  1017.231] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[  1017.231] (--) NVIDIA(0):     DFP-0
[  1017.231] (--) NVIDIA(0):     DFP-1
[  1017.231] (--) NVIDIA(0):     DFP-2 (boot)
[  1017.231] (--) NVIDIA(0):     DFP-3
[  1017.231] (--) NVIDIA(0):     DFP-4
[  1017.231] (--) NVIDIA(0):     DFP-5
[  1017.231] (--) NVIDIA(0):     DFP-6
[  1017.231] (--) NVIDIA(0):     DFP-7
[  1017.231] (II) NVIDIA(0): NVIDIA GPU GeForce RTX 2080 Ti (TU102-A) at PCI:1:0:0 (GPU-0)
[  1017.231] (--) NVIDIA(0): Memory: 11534336 kBytes
[  1017.231] (--) NVIDIA(0): VideoBIOS: 90.02.17.00.0d
[  1017.231] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[  1017.231] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  1017.231] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  1017.231] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  1017.231] (--) NVIDIA(GPU-0): 
[  1017.231] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  1017.231] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  1017.231] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  1017.231] (--) NVIDIA(GPU-0): 
[  1017.261] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): connected
[  1017.261] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): Internal TMDS
[  1017.261] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): 600.0 MHz maximum pixel clock
[  1017.261] (--) NVIDIA(GPU-0): 
[  1017.261] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  1017.261] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[  1017.261] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[  1017.261] (--) NVIDIA(GPU-0): 
[  1017.261] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  1017.261] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  1017.261] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  1017.261] (--) NVIDIA(GPU-0): 
[  1017.261] (--) NVIDIA(GPU-0): DFP-5: disconnected
[  1017.261] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[  1017.261] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[  1017.261] (--) NVIDIA(GPU-0): 
[  1017.261] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  1017.261] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  1017.261] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  1017.261] (--) NVIDIA(GPU-0): 
[  1017.261] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  1017.261] (--) NVIDIA(GPU-0): DFP-7: Internal DisplayPort
[  1017.261] (--) NVIDIA(GPU-0): DFP-7: 2660.0 MHz maximum pixel clock
[  1017.261] (--) NVIDIA(GPU-0): 
[  1017.322] (==) NVIDIA(0): 
[  1017.322] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[  1017.322] (==) NVIDIA(0):     will be used as the requested mode.
[  1017.322] (==) NVIDIA(0): 
[  1017.324] (II) NVIDIA(0): Validated MetaModes:
[  1017.324] (II) NVIDIA(0):     "DFP-2:nvidia-auto-select"
[  1017.324] (II) NVIDIA(0): Virtual screen size determined to be 2560 x 1440
[  1017.377] (--) NVIDIA(0): DPI set to (108, 107); computed from "UseEdidDpi" X config
[  1017.377] (--) NVIDIA(0):     option
[  1017.378] (II) NVIDIA: Using 24576.00 MB of virtual memory for indirect memory
[  1017.378] (II) NVIDIA:     access.
[  1017.382] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[  1017.382] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[  1017.382] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[  1017.382] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[  1017.382] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[  1017.382] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[  1017.382] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[  1017.382] (II) NVIDIA(0):     Config Options in the README.
[  1017.392] (II) NVIDIA(0): Setting mode "DFP-2:nvidia-auto-select"
[  1017.414] (==) NVIDIA(0): Disabling shared memory pixmaps
[  1017.414] (==) NVIDIA(0): Backing store enabled
[  1017.414] (==) NVIDIA(0): Silken mouse disabled
[  1017.414] (**) NVIDIA(0): DPMS enabled
[  1017.414] (II) Loading sub module "dri2"
[  1017.414] (II) LoadModule: "dri2"
[  1017.414] (II) Module "dri2" already built-in
[  1017.414] (II) NVIDIA(0): [DRI2] Setup complete
[  1017.414] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[  1017.414] (II) Initializing extension Generic Event Extension
[  1017.415] (II) Initializing extension SHAPE
[  1017.415] (II) Initializing extension MIT-SHM
[  1017.415] (II) Initializing extension XInputExtension
[  1017.415] (II) Initializing extension XTEST
[  1017.415] (II) Initializing extension BIG-REQUESTS
[  1017.415] (II) Initializing extension SYNC
[  1017.415] (II) Initializing extension XKEYBOARD
[  1017.415] (II) Initializing extension XC-MISC
[  1017.415] (II) Initializing extension SECURITY
[  1017.415] (II) Initializing extension XFIXES
[  1017.415] (II) Initializing extension RENDER
[  1017.415] (II) Initializing extension RANDR
[  1017.415] (II) Initializing extension COMPOSITE
[  1017.415] (II) Initializing extension DAMAGE
[  1017.415] (II) Initializing extension MIT-SCREEN-SAVER
[  1017.415] (II) Initializing extension DOUBLE-BUFFER
[  1017.415] (II) Initializing extension RECORD
[  1017.415] (II) Initializing extension DPMS
[  1017.415] (II) Initializing extension Present
[  1017.416] (II) Initializing extension DRI3
[  1017.416] (II) Initializing extension X-Resource
[  1017.416] (II) Initializing extension XVideo
[  1017.416] (II) Initializing extension XVideo-MotionCompensation
[  1017.416] (II) Initializing extension GLX
[  1017.416] (II) AIGLX: Screen 0 is not DRI2 capable
[  1017.455] (II) IGLX: Loaded and initialized swrast
[  1017.455] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[  1017.455] (II) Initializing extension XFree86-VidModeExtension
[  1017.455] (II) Initializing extension XFree86-DGA
[  1017.455] (II) Initializing extension XFree86-DRI
[  1017.455] (II) Initializing extension DRI2
[  1017.455] (II) Initializing extension NV-GLX
[  1017.455] (II) Initializing extension NV-CONTROL
[  1017.456] (II) Initializing extension XINERAMA
[  1017.485] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[  1017.485] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  1017.485] (II) LoadModule: "libinput"
[  1017.485] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[  1017.486] (II) Module libinput: vendor="X.Org Foundation"
[  1017.486] 	compiled for 1.20.8, module version = 0.30.0
[  1017.486] 	Module class: X.Org XInput Driver
[  1017.486] 	ABI class: X.Org XInput driver, version 24.1
[  1017.486] (II) Using input driver 'libinput' for 'Power Button'
[  1017.486] (**) Power Button: always reports core events
[  1017.486] (**) Option "Device" "/dev/input/event2"
[  1017.486] (**) Option "_source" "server/udev"
[  1017.486] (II) event2  - Power Button: is tagged by udev as: Keyboard
[  1017.486] (II) event2  - Power Button: device is a keyboard
[  1017.487] (II) event2  - Power Button: device removed
[  1017.535] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[  1017.535] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  1017.536] (II) event2  - Power Button: is tagged by udev as: Keyboard
[  1017.536] (II) event2  - Power Button: device is a keyboard
[  1017.536] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  1017.536] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  1017.536] (II) Using input driver 'libinput' for 'Power Button'
[  1017.536] (**) Power Button: always reports core events
[  1017.536] (**) Option "Device" "/dev/input/event1"
[  1017.536] (**) Option "_source" "server/udev"
[  1017.537] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  1017.537] (II) event1  - Power Button: device is a keyboard
[  1017.537] (II) event1  - Power Button: device removed
[  1017.575] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  1017.575] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[  1017.578] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  1017.578] (II) event1  - Power Button: device is a keyboard
[  1017.579] (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
[  1017.579] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[  1017.579] (II) Using input driver 'libinput' for 'Sleep Button'
[  1017.580] (**) Sleep Button: always reports core events
[  1017.580] (**) Option "Device" "/dev/input/event0"
[  1017.580] (**) Option "_source" "server/udev"
[  1017.582] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[  1017.582] (II) event0  - Sleep Button: device is a keyboard
[  1017.583] (II) event0  - Sleep Button: device removed
[  1017.615] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
[  1017.615] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[  1017.618] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[  1017.618] (II) event0  - Sleep Button: device is a keyboard
[  1017.619] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event10)
[  1017.619] (II) No input driver specified, ignoring this device.
[  1017.620] (II) This device may have been added with another device file.
[  1017.620] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event4)
[  1017.620] (II) No input driver specified, ignoring this device.
[  1017.620] (II) This device may have been added with another device file.
[  1017.621] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event5)
[  1017.621] (II) No input driver specified, ignoring this device.
[  1017.621] (II) This device may have been added with another device file.
[  1017.622] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event6)
[  1017.622] (II) No input driver specified, ignoring this device.
[  1017.622] (II) This device may have been added with another device file.
[  1017.623] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event7)
[  1017.623] (II) No input driver specified, ignoring this device.
[  1017.623] (II) This device may have been added with another device file.
[  1017.624] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event8)
[  1017.624] (II) No input driver specified, ignoring this device.
[  1017.624] (II) This device may have been added with another device file.
[  1017.624] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event9)
[  1017.624] (II) No input driver specified, ignoring this device.
[  1017.624] (II) This device may have been added with another device file.
[  1017.626] (II) config/udev: Adding input device SONiX USB DEVICE (/dev/input/event18)
[  1017.626] (**) SONiX USB DEVICE: Applying InputClass "libinput keyboard catchall"
[  1017.626] (II) Using input driver 'libinput' for 'SONiX USB DEVICE'
[  1017.626] (**) SONiX USB DEVICE: always reports core events
[  1017.626] (**) Option "Device" "/dev/input/event18"
[  1017.626] (**) Option "_source" "server/udev"
[  1017.630] (II) event18 - SONiX USB DEVICE: is tagged by udev as: Keyboard
[  1017.630] (II) event18 - SONiX USB DEVICE: device is a keyboard
[  1017.631] (II) event18 - SONiX USB DEVICE: device removed
[  1017.655] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:05AC:0256.0001/input/input18/event18"
[  1017.655] (II) XINPUT: Adding extended input device "SONiX USB DEVICE" (type: KEYBOARD, id 9)
[  1017.659] (II) event18 - SONiX USB DEVICE: is tagged by udev as: Keyboard
[  1017.660] (II) event18 - SONiX USB DEVICE: device is a keyboard
[  1017.662] (II) config/udev: Adding input device SONiX USB DEVICE Consumer Control (/dev/input/event19)
[  1017.662] (**) SONiX USB DEVICE Consumer Control: Applying InputClass "libinput keyboard catchall"
[  1017.662] (II) Using input driver 'libinput' for 'SONiX USB DEVICE Consumer Control'
[  1017.662] (**) SONiX USB DEVICE Consumer Control: always reports core events
[  1017.662] (**) Option "Device" "/dev/input/event19"
[  1017.662] (**) Option "_source" "server/udev"
[  1017.666] (II) event19 - SONiX USB DEVICE Consumer Control: is tagged by udev as: Keyboard
[  1017.666] (II) event19 - SONiX USB DEVICE Consumer Control: device is a keyboard
[  1017.667] (II) event19 - SONiX USB DEVICE Consumer Control: device removed
[  1017.695] (II) libinput: SONiX USB DEVICE Consumer Control: needs a virtual subdevice
[  1017.695] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:05AC:0256.0002/input/input19/event19"
[  1017.695] (II) XINPUT: Adding extended input device "SONiX USB DEVICE Consumer Control" (type: MOUSE, id 10)
[  1017.695] (**) Option "AccelerationScheme" "none"
[  1017.695] (**) SONiX USB DEVICE Consumer Control: (accel) selected scheme none/0
[  1017.695] (**) SONiX USB DEVICE Consumer Control: (accel) acceleration factor: 2.000
[  1017.695] (**) SONiX USB DEVICE Consumer Control: (accel) acceleration threshold: 4
[  1017.699] (II) event19 - SONiX USB DEVICE Consumer Control: is tagged by udev as: Keyboard
[  1017.700] (II) event19 - SONiX USB DEVICE Consumer Control: device is a keyboard
[  1017.702] (II) config/udev: Adding input device SONiX USB DEVICE System Control (/dev/input/event20)
[  1017.702] (**) SONiX USB DEVICE System Control: Applying InputClass "libinput keyboard catchall"
[  1017.702] (II) Using input driver 'libinput' for 'SONiX USB DEVICE System Control'
[  1017.702] (**) SONiX USB DEVICE System Control: always reports core events
[  1017.702] (**) Option "Device" "/dev/input/event20"
[  1017.702] (**) Option "_source" "server/udev"
[  1017.706] (II) event20 - SONiX USB DEVICE System Control: is tagged by udev as: Keyboard
[  1017.706] (II) event20 - SONiX USB DEVICE System Control: device is a keyboard
[  1017.706] (II) event20 - SONiX USB DEVICE System Control: device removed
[  1017.735] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:05AC:0256.0002/input/input20/event20"
[  1017.735] (II) XINPUT: Adding extended input device "SONiX USB DEVICE System Control" (type: KEYBOARD, id 11)
[  1017.739] (II) event20 - SONiX USB DEVICE System Control: is tagged by udev as: Keyboard
[  1017.740] (II) event20 - SONiX USB DEVICE System Control: device is a keyboard
[  1017.742] (II) config/udev: Adding input device SONiX USB DEVICE Keyboard (/dev/input/event21)
[  1017.742] (**) SONiX USB DEVICE Keyboard: Applying InputClass "libinput keyboard catchall"
[  1017.742] (II) Using input driver 'libinput' for 'SONiX USB DEVICE Keyboard'
[  1017.742] (**) SONiX USB DEVICE Keyboard: always reports core events
[  1017.742] (**) Option "Device" "/dev/input/event21"
[  1017.742] (**) Option "_source" "server/udev"
[  1017.746] (II) event21 - SONiX USB DEVICE Keyboard: is tagged by udev as: Keyboard
[  1017.746] (II) event21 - SONiX USB DEVICE Keyboard: device is a keyboard
[  1017.747] (II) event21 - SONiX USB DEVICE Keyboard: device removed
[  1017.775] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:05AC:0256.0002/input/input21/event21"
[  1017.775] (II) XINPUT: Adding extended input device "SONiX USB DEVICE Keyboard" (type: KEYBOARD, id 12)
[  1017.779] (II) event21 - SONiX USB DEVICE Keyboard: is tagged by udev as: Keyboard
[  1017.780] (II) event21 - SONiX USB DEVICE Keyboard: device is a keyboard
[  1017.782] (II) config/udev: Adding input device PixA琀 USB Optical Mouse (/dev/input/event22)
[  1017.782] (**) PixA琀 USB Optical Mouse: Applying InputClass "libinput pointer catchall"
[  1017.782] (II) Using input driver 'libinput' for 'PixA琀 USB Optical Mouse'
[  1017.782] (**) PixA琀 USB Optical Mouse: always reports core events
[  1017.782] (**) Option "Device" "/dev/input/event22"
[  1017.782] (**) Option "_source" "server/udev"
[  1017.786] (II) event22 - PixA琀 USB Optical Mouse: is tagged by udev as: Mouse
[  1017.786] (II) event22 - PixA琀 USB Optical Mouse: device is a pointer
[  1017.787] (II) event22 - PixA琀 USB Optical Mouse: device removed
[  1017.842] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:093A:2510.0003/input/input22/event22"
[  1017.842] (II) XINPUT: Adding extended input device "PixA琀 USB Optical Mouse" (type: MOUSE, id 13)
[  1017.842] (**) Option "AccelerationScheme" "none"
[  1017.842] (**) PixA琀 USB Optical Mouse: (accel) selected scheme none/0
[  1017.842] (**) PixA琀 USB Optical Mouse: (accel) acceleration factor: 2.000
[  1017.842] (**) PixA琀 USB Optical Mouse: (accel) acceleration threshold: 4
[  1017.846] (II) event22 - PixA琀 USB Optical Mouse: is tagged by udev as: Mouse
[  1017.846] (II) event22 - PixA琀 USB Optical Mouse: device is a pointer
[  1017.848] (II) config/udev: Adding input device PixA琀 USB Optical Mouse (/dev/input/mouse0)
[  1017.848] (II) No input driver specified, ignoring this device.
[  1017.848] (II) This device may have been added with another device file.
[  1017.849] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event11)
[  1017.849] (II) No input driver specified, ignoring this device.
[  1017.849] (II) This device may have been added with another device file.
[  1017.850] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event12)
[  1017.850] (II) No input driver specified, ignoring this device.
[  1017.850] (II) This device may have been added with another device file.
[  1017.851] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event13)
[  1017.851] (II) No input driver specified, ignoring this device.
[  1017.851] (II) This device may have been added with another device file.
[  1017.852] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event14)
[  1017.852] (II) No input driver specified, ignoring this device.
[  1017.852] (II) This device may have been added with another device file.
[  1017.852] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event15)
[  1017.852] (II) No input driver specified, ignoring this device.
[  1017.852] (II) This device may have been added with another device file.
[  1017.853] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event16)
[  1017.853] (II) No input driver specified, ignoring this device.
[  1017.853] (II) This device may have been added with another device file.
[  1017.854] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event17)
[  1017.854] (II) No input driver specified, ignoring this device.
[  1017.854] (II) This device may have been added with another device file.
[  1017.855] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
[  1017.855] (II) No input driver specified, ignoring this device.
[  1017.855] (II) This device may have been added with another device file.
[  1017.863] (**) SONiX USB DEVICE Consumer Control: Applying InputClass "libinput keyboard catchall"
[  1017.863] (II) Using input driver 'libinput' for 'SONiX USB DEVICE Consumer Control'
[  1017.863] (**) SONiX USB DEVICE Consumer Control: always reports core events
[  1017.863] (**) Option "Device" "/dev/input/event19"
[  1017.863] (**) Option "_source" "_driver/libinput"
[  1017.863] (II) libinput: SONiX USB DEVICE Consumer Control: is a virtual subdevice
[  1017.863] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:05AC:0256.0002/input/input19/event19"
[  1017.863] (II) XINPUT: Adding extended input device "SONiX USB DEVICE Consumer Control" (type: KEYBOARD, id 14)
[  3279.372] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): connected
[  3279.372] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): Internal TMDS
[  3279.372] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): 600.0 MHz maximum pixel clock
[  3279.372] (--) NVIDIA(GPU-0): 
[  3279.401] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): connected
[  3279.401] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): Internal TMDS
[  3279.401] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): 600.0 MHz maximum pixel clock
[  3279.401] (--) NVIDIA(GPU-0): 
[  4970.206] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): connected
[  4970.206] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): Internal TMDS
[  4970.206] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): 600.0 MHz maximum pixel clock
[  4970.206] (--) NVIDIA(GPU-0): 
[  4970.235] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): connected
[  4970.235] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): Internal TMDS
[  4970.235] (--) NVIDIA(GPU-0): Acer XV272U (DFP-2): 600.0 MHz maximum pixel clock
[  4970.235] (--) NVIDIA(GPU-0): 
[ 14826.879] (EE) client bug: timer event22 debounce short: scheduled expiry is in the past (-9ms), your system is too slow

Offline

#9 2020-07-31 13:21:22

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

[  1016.632] (II) LoadModule: "glxserver_nvidia"
[  1016.632] (WW) Warning, couldn't open module glxserver_nvidia
[  1016.632] (EE) NVIDIA: Failed to load module "glxserver_nvidia" (module does not exist, 0)
[  1016.632] (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
[  1016.632] (EE) NVIDIA(0):     log file that the GLX module has been loaded in your X
[  1016.632] (EE) NVIDIA(0):     server, and that the module is the NVIDIA GLX module.  If
[  1016.632] (EE) NVIDIA(0):     you continue to encounter problems, Please try
[  1016.632] (EE) NVIDIA(0):     reinstalling the NVIDIA driver.

lspci does not suggest that this is an optimus system, why do you haev virtualgl installed?

You're using a static server layout as generated by nvidia-xconfig, remove /etc/X11/xorg.conf but the real problem is that you miss sth. like

[    24.697] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules

which would be added by /usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf as provided by nvidia-utils.

pacman -Qikk nvidia-utils
pacman -Qs '(nvidia|bumblebee)'

Offline

#10 2020-07-31 13:33:22

qiuweikang
Member
Registered: 2020-07-31
Posts: 19

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

Actually I do not know what virtualgl is. I think I just install it accidentally.

pacman -Qikk nvidia-utils

Name            : nvidia-utils
Version         : 450.57-2
Description     : NVIDIA drivers utilities
Architecture    : x86_64
URL             : http://www.nvidia.com/
Licenses        : custom
Groups          : None
Provides        : vulkan-driver  opengl-driver  nvidia-libgl
Depends On      : xorg-server  libglvnd  egl-wayland
Optional Deps   : nvidia-settings: configuration tool [installed]
                  xorg-server-devel: nvidia-xconfig [installed]
                  opencl-nvidia: OpenCL support [installed]
Required By     : cuda  lib32-nvidia-utils  libglvnd  nvidia  nvidia-settings
Optional For    : ffmpeg  vulkan-icd-loader
Conflicts With  : nvidia-libgl
Replaces        : nvidia-libgl
Installed Size  : 250.61 MiB
Packager        : Sven-Hendrik Haase <svenstaro@gmail.com>
Build Date      : Fri 10 Jul 2020 12:06:25 AM CST
Install Date    : Thu 30 Jul 2020 01:47:57 PM CST
Install Reason  : Explicitly installed
Install Script  : Yes
Validated By    : Signature
pacman -Qs '(nvidia|bumblebee)'

local/bumblebee 3.2.1-21
    NVIDIA Optimus support for Linux through VirtualGL
local/cuda 11.0.2-1
    NVIDIA's GPU programming toolkit
local/cudnn 8.0.0.180-2
    NVIDIA CUDA Deep Neural Network library
local/egl-wayland 1.1.5-1
    EGLStream-based Wayland external platform
local/lib32-nvidia-utils 450.57-1
    NVIDIA drivers utilities (32-bit)
local/libvdpau 1.4-1
    Nvidia VDPAU library
local/libxnvctrl 450.57-1
    NVIDIA NV-CONTROL X extension
local/nvidia 450.57-4
    NVIDIA drivers for linux
local/nvidia-settings 450.57-1
    Tool for configuring the NVIDIA graphics driver
local/nvidia-utils 450.57-2
    NVIDIA drivers utilities
local/opencl-nvidia 450.57-2
    OpenCL implemention for NVIDIA

And my /usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf

Section "OutputClass"
    Identifier "nvidia"
    MatchDriver "nvidia-drm"
    Driver "nvidia"
    Option "AllowEmptyInitialConfiguration"
    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
EndSection

Offline

#11 2020-07-31 13:36:01

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

It's a dependency of bumblebee - why do you have that installed? You don't seem to have an optimus system, so it's pointless.

pacman -Rs bumblebee

Also try https://wiki.archlinux.org/index.php/NV … de_setting

Offline

#12 2020-07-31 13:52:55

qiuweikang
Member
Registered: 2020-07-31
Posts: 19

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

I uninstall bumblee and follow the instruction, I did and got

sysctl nvidia-drm.modeset=1

sysctl: cannot stat /proc/sys/nvidia-drm/modeset: No such file or directory

Is there a problem with nvidia-drm?

Offline

#13 2020-07-31 13:55:02

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

You'll have to pass that at boot time.

Sanity check: "pacman -Qs nvidia" (if you only installed it as dep for bumblebee, it's now gone …)

Offline

#14 2020-07-31 14:13:48

qiuweikang
Member
Registered: 2020-07-31
Posts: 19

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

It works !!!!!!
Thank you soooooooooooooooooooo much !!!!
But I still want to confirm that I am still using the closed-source driver, right?

Offline

#15 2020-07-31 14:15:04

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

Check your new xorg log and/or the output of glxinfo.
If it says "nvidia" and no errors, you're using the closed source driver.

Offline

#16 2020-07-31 14:19:19

qiuweikang
Member
Registered: 2020-07-31
Posts: 19

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

OK. I've been stuck in this problem for 3 days.
Thank you very very very very very much !

Offline

#17 2020-07-31 14:32:21

seth
Member
Registered: 2012-09-03
Posts: 49,981

Re: [SOLVED] Failed to start picom with vsync_opengl_swc_init error

You're welcome.
Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.

Offline

Board footer

Powered by FluxBB