https://bugs.kde.org/show_bug.cgi?id=477985
--- Comment #1 from Stefan Hoffmeister <stefan.hoffmeis...@econos.de> --- I added ``` export QT_LOGGING_RULES="kwin*=true" ``` and whenever I resize the virtual screen from the host, I get ``` Dec 03 19:50:30 fedora kwin_wayland[7208]: kwin_wayland_drm: Received change event for monitored drm device "/dev/dri/card0" Dec 03 19:50:30 fedora kwin_wayland[7208]: kwin_wayland_drm: Could not find edid for connector DrmConnector(id=38, gpu=KWin::DrmGpu(0x558b1858c490), name="Virtual-1-unknown", connection="Connected", countMode=25) Dec 03 19:50:30 fedora systemd[1]: vboxclient.service - VirtualBox guest VMSVGA resize client was skipped because no trigger condition checks were met. ``` The last log entry I just left in to show that the Oracle VirtualBox resize client is being skipped (as expected). `drm_info` has this to say: ``` stefan@fedora:~/.config/plasma-workspace/env$ drm_info drmModeGetFB2: No such device drmModeGetFB2: No such device Node: /dev/dri/card0 ├───Driver: vmwgfx (Linux drm driver for VMware graphics devices) version 2.20.0 (20211206) │ ├───DRM_CLIENT_CAP_STEREO_3D supported │ ├───DRM_CLIENT_CAP_UNIVERSAL_PLANES supported │ ├───DRM_CLIENT_CAP_ATOMIC supported │ ├───DRM_CLIENT_CAP_ASPECT_RATIO supported │ ├───DRM_CLIENT_CAP_WRITEBACK_CONNECTORS supported │ ├───DRM_CAP_DUMB_BUFFER = 1 │ ├───DRM_CAP_VBLANK_HIGH_CRTC = 1 │ ├───DRM_CAP_DUMB_PREFERRED_DEPTH = 32 │ ├───DRM_CAP_DUMB_PREFER_SHADOW = 0 │ ├───DRM_CAP_PRIME = 3 │ ├───DRM_CAP_TIMESTAMP_MONOTONIC = 1 │ ├───DRM_CAP_ASYNC_PAGE_FLIP = 0 │ ├───DRM_CAP_CURSOR_WIDTH = 64 │ ├───DRM_CAP_CURSOR_HEIGHT = 64 │ ├───DRM_CAP_ADDFB2_MODIFIERS = 1 │ ├───DRM_CAP_PAGE_FLIP_TARGET = 0 │ ├───DRM_CAP_CRTC_IN_VBLANK_EVENT = 1 │ ├───DRM_CAP_SYNCOBJ = 0 │ └───DRM_CAP_SYNCOBJ_TIMELINE = 0 ├───Device: PCI 15ad:0405 VMware SVGA II Adapter │ └───Available nodes: primary, render ├───Framebuffer size │ ├───Width: [1, 16384] │ └───Height: [1, 16384] ├───Connectors │ ├───Connector 0 │ │ ├───Object ID: 38 │ │ ├───Type: virtual │ │ ├───Status: connected │ │ ├───Physical size: 0x0 mm │ │ ├───Subpixel: unknown │ │ ├───Encoders: {0} │ │ ├───Modes │ │ │ ├───2139x1454@60.00 preferred driver nhsync pvsync │ │ │ ├───3840x2400@59.97 driver phsync nvsync │ │ │ ├───3840x2160@59.97 driver phsync nvsync │ │ │ ├───2880x1800@59.95 driver phsync nvsync │ │ │ ├───2560x1600@59.99 driver nhsync pvsync │ │ │ ├───2560x1440@59.95 driver phsync nvsync │ │ │ ├───1920x1440@60.00 driver nhsync pvsync │ │ │ ├───1856x1392@59.99 driver nhsync pvsync │ │ │ ├───1792x1344@60.00 driver nhsync pvsync │ │ │ ├───1920x1200@59.88 driver nhsync pvsync │ │ │ ├───1920x1080@59.96 driver nhsync pvsync │ │ │ ├───1600x1200@60.00 driver phsync pvsync │ │ │ ├───1680x1050@59.95 driver nhsync pvsync │ │ │ ├───1400x1050@59.98 driver nhsync pvsync │ │ │ ├───1280x1024@60.02 driver phsync pvsync │ │ │ ├───1440x900@59.89 driver nhsync pvsync │ │ │ ├───1280x960@60.00 driver phsync pvsync │ │ │ ├───1360x768@60.02 driver phsync pvsync │ │ │ ├───1280x800@59.81 driver phsync nvsync │ │ │ ├───1152x864@75.00 driver phsync pvsync │ │ │ ├───1280x768@59.87 driver nhsync pvsync │ │ │ ├───1280x720@59.85 driver nhsync pvsync │ │ │ ├───1024x768@60.00 driver nhsync nvsync │ │ │ ├───800x600@60.32 driver phsync pvsync │ │ │ └───640x480@59.94 driver nhsync nvsync │ │ └───Properties │ │ ├───"DPMS": enum {On, Standby, Suspend, Off} = On │ │ ├───"link-status": enum {Good, Bad} = Good │ │ ├───"non-desktop" (immutable): range [0, 1] = 0 │ │ ├───"TILE" (immutable): blob = 0 │ │ ├───"CRTC_ID" (atomic): object CRTC = 40 │ │ ├───"hotplug_mode_update" (immutable): range [0, 1] = 1 │ │ ├───"suggested X" (immutable): range [0, UINT32_MAX] = 0 │ │ └───"suggested Y" (immutable): range [0, UINT32_MAX] = 0 ``` The DRM context for this is ``` stefan@fedora:~/.config/plasma-workspace/env$ cat /sys/class/drm/card0-Virtual-1/status connected stefan@fedora:~/.config/plasma-workspace/env$ cat /sys/class/drm/card0-Virtual-1/modes 2139x1454 3840x2400 3840x2160 2880x1800 2560x1600 2560x1440 1920x1440 1856x1392 1792x1344 1920x1200 1920x1080 1600x1200 1680x1050 1400x1050 1280x1024 1440x900 1280x960 1360x768 1280x800 1152x864 1280x768 1280x720 1024x768 800x600 640x480 stefan@fedora:~/.config/plasma-workspace/env$ cat /sys/class/drm/card0-Virtual-1/edid stefan@fedora:~/.config/plasma-workspace/env$ stefan@fedora:~/.config/plasma-workspace/env$ ``` highlighting that there indeed is no EDID data. -- You are receiving this mail because: You are watching all bug changes.