1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*! # The built-in rasterizers.
Plotters make a minimal backend ability assumption - which is drawing a pixel on
backend. And this is the rasterizer that utilize this minimal ability to build a
fully functioning backend.
*/
// TODO: We need to revisit this. It has been a long time since last time we figured out
// the question mark operator has a huge performance impact due to LLVM unable to handle it.
// So the question is if this trick is still useful, or LLVM is smart enough to handle it since
// then.
//
// --
// Original comment:
//
// ? operator is very slow. See issue #58 for details
pub use draw_line;
pub use draw_rect;
pub use draw_circle;
pub use fill_polygon;
pub use polygonize;