To enable experimental features, add the feature keyword to the list. Whether the feature requires restarting the compositor depends on the given feature. Any experimental feature is not required to still be available, or configurable. Don’t expect adding anything in this setting to be future proof.
Currently possible keywords:
• “scale-monitor-framebuffer” — makes mutter default to layout logical monitors in a logical pixel coordinate space, while scaling monitor framebuffers instead of window content, to manage HiDPI monitors. Does not require a restart.
• “kms-modifiers” — makes mutter always allocate scanout buffers with explicit modifiers, if supported by the driver. Requires a restart.
• “rt-scheduler” — makes mutter request a low priority real-time scheduling. Requires a restart.
• “autoclose-xwayland” — automatically terminates Xwayland if all relevant X11 clients are gone. Requires a restart.
• “x11-randr-fractional-scaling” — enable fractional scaling under X11 using xrandr scaling. It might reduce performances. Does not require a restart.
没有什么不对或不成熟。仅仅因为 Windows 没有告诉您分数缩放的性能影响和缺点并不意味着它不存在。
要理解此工具提示,您必须了解像素在显示中的排列方式。
如果您有 1920x1080 (1080p) 显示器,这意味着有 2,073,600 像素的网格排列在 1920 列和 1080 行中。
当您使用分数缩放时,您正在更改屏幕上的项目在此网格中的呈现方式。
使用 200% 缩放,渲染这些像素的计算非常容易。渲染 200% 缩放所需要做的就是将每个像素渲染为 4 个相同像素的正方形。
100% 缩放的 4 像素网格(正常):
在 200% 缩放中呈现为 16 像素:
像素可以以可以完美复制而无需分割的方式缩放。图像将保持其清晰度,因为像素可以完美复制。
如果使用 125% 缩放,则无法进行这种简单的乘法运算。为了渲染图像,需要将像素分成小于单个像素的部分。但是像素不能以这种方式划分,因此需要额外的计算来人工创建 125% 的像素映射。
这不仅需要额外的计算,而且由于这些像素不能在没有余数的情况下相乘,因此与 200% 缩放或不缩放相比,它可能会导致图像显得模糊。
分数缩放是 2022 年的一项实验性功能。
gsettings describe org.gnome.mutter experimental-features
告诉我们正如我们所见,性能警告来自对 x11 程序的支持。
在我的情况下,通过 GUI 设置它会屏蔽我的 VGA 显示器(或内部 VGA 显卡)。然而,一个
gsettings reset org.gnome.mutter experimental-features
电话能够修复它,屏幕马上又回来了。环境:
在
然后运行:
似乎为我解决了这个问题。
https://linuxconfig.org/how-to-enable-disable-wayland-on-ubuntu-22-04-desktop