Remove support of old SIXTYFPS_ env variable, and sixtyfps_widgets.60

This commit is contained in:
Olivier Goffart 2023-01-26 12:40:27 +01:00 committed by Olivier Goffart
parent 52fb1ab9fe
commit a0fb8bc771
7 changed files with 7 additions and 53 deletions

View file

@ -169,8 +169,8 @@ int main()
if (auto error = app->window().set_rendering_notifier(OpenGLUnderlay(app))) {
if (*error == slint::SetRenderingNotifierError::Unsupported) {
fprintf(stderr,
"This example requires the use of the GL backend. Please run with the "
"environment variable SIXTYFPS_BACKEND=GL set.\n");
"This example requires the use of a GL renderer. Please run with the "
"environment variable SLINT_BACKEND=winit set.\n");
} else {
fprintf(stderr, "Unknown error calling set_rendering_notifier\n");
}