/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/canvas/lib.rs
14 строк
423 B
Martin Robinson
Remove the `vello_cpu` compilation option and enable it by default (#41820)
13 янв 2026, 01:42
Не верифицирован
13 янв 2026, 01:42
bf45233
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #![deny(unsafe_code)] #![allow(clippy::too_many_arguments)] mod backend; pub mod canvas_data; pub mod canvas_paint_thread; mod peniko_conversions; #[cfg(feature = "vello")] mod vello_backend; mod vello_cpu_backend;