mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
Add cargo feature to control canvas backend.
This commit is contained in:
parent
42bf1984be
commit
3243f1753b
11 changed files with 1077 additions and 816 deletions
|
@ -7,6 +7,12 @@
|
|||
#[macro_use]
|
||||
extern crate log;
|
||||
|
||||
#[cfg(feature = "azure_backend")]
|
||||
mod azure_backend;
|
||||
|
||||
#[cfg(feature = "raqote_backend")]
|
||||
mod raqote_backend;
|
||||
|
||||
pub mod canvas_data;
|
||||
pub mod canvas_paint_thread;
|
||||
pub mod gl_context;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue