diff options
author | Martin Robinson <mrobinson@igalia.com> | 2025-01-17 12:47:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-17 11:47:47 +0000 |
commit | 2d09552234b08fa091866e2f799df0e841a99070 (patch) | |
tree | 1f7a2f3ffa945cbdb68bec711b36ab8430424f0b /components/shared/canvas | |
parent | e1b4649fafcfc0881367e8069f66359e3bfbc5eb (diff) | |
download | servo-2d09552234b08fa091866e2f799df0e841a99070.tar.gz servo-2d09552234b08fa091866e2f799df0e841a99070.zip |
prefs: Move some `DebugOptions` to `Preferences` and clean up (#34998)
- Move options configuring antialiasing and WebRender shader precache to
the `Preferences` to group them with other related WebRender and DOM
settings.
- Remove the option to disable antialiasing for canvases. This was
unused.
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
Diffstat (limited to 'components/shared/canvas')
-rw-r--r-- | components/shared/canvas/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/shared/canvas/lib.rs b/components/shared/canvas/lib.rs index f1444ad1a3e..8d72c818284 100644 --- a/components/shared/canvas/lib.rs +++ b/components/shared/canvas/lib.rs @@ -19,7 +19,6 @@ pub enum ConstellationCanvasMsg { Create { id_sender: Sender<CanvasId>, size: Size2D<u64>, - antialias: bool, }, Exit, } |