Improve docs about backend and render selection

This commit is contained in:
Olivier Goffart 2024-05-07 11:31:36 +02:00 committed by GitHub
parent 2e3b00e38e
commit e1f6c48958
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 0 deletions

View file

@ -18,6 +18,9 @@ The Winit backend supports different renderers. They can be explicitly selected
| Skia OpenGL | OpenGL rendering with Skia | `winit-skia-opengl` |
| software | Software-rendering, no GPU required | `winit-software` |
If no renderer is explicitly set, the backend will first try to use the Skia renderer, if it was enabled at compile time.
If that fails, it will fall back to the FemtoVG renderer, and if that also fails, it will use the software renderer.
## Configuration Options