core_graphics_helmer_fork/
lib.rs

1// Copyright 2013 The Servo Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution.
3//
4// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7// option. This file may not be copied, modified, or distributed
8// except according to those terms.
9
10extern crate libc;
11
12#[macro_use]
13extern crate core_foundation;
14
15#[macro_use]
16extern crate bitflags;
17
18#[macro_use]
19extern crate foreign_types;
20
21extern crate core_graphics_types;
22
23#[cfg(target_os = "macos")]
24pub mod access;
25pub mod base;
26pub mod color;
27pub mod color_space;
28pub mod context;
29pub mod data_provider;
30#[cfg(target_os = "macos")]
31pub mod display;
32#[cfg(target_os = "macos")]
33pub mod event;
34#[cfg(target_os = "macos")]
35pub mod event_source;
36pub mod font;
37pub mod geometry;
38pub mod gradient;
39pub mod image;
40pub mod path;
41#[cfg(target_os = "macos")]
42pub mod private;
43pub mod sys;
44#[cfg(target_os = "macos")]
45pub mod window;