Bug 1714483 - Force-disable Nvidia FXAA, r=aosmond

While not enabled by default, it is openly exposed in the driver
settings and thus apparently not uncommon. Currently it causes
significant glitches for Firefox HW-WR, but also other text focused
apps (GTK 4).
While this should get fixed in the driver eventually, use the
workaround recommended by Nvidia to force-disable it for now.

Differential Revision: https://phabricator.services.mozilla.com/D125981
This commit is contained in:
Robert Mader 2021-09-17 16:44:10 +00:00
Родитель 7bec5103e3
Коммит d5e7b8e606
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -126,6 +126,10 @@ gfxPlatformGtk::gfxPlatformGtk() {
g_signal_connect(gdkScreen, "notify::resolution", g_signal_connect(gdkScreen, "notify::resolution",
G_CALLBACK(screen_resolution_changed), nullptr); G_CALLBACK(screen_resolution_changed), nullptr);
} }
// Bug 1714483: Force disable FXAA Antialiasing on NV drivers. This is a
// temporary workaround for a driver bug.
PR_SetEnv("__GL_ALLOW_FXAA_USAGE=0");
} }
gfxPlatformGtk::~gfxPlatformGtk() { gfxPlatformGtk::~gfxPlatformGtk() {