1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2016 Brandon Thomas <bt@brand.io>, <echelon@gmail.com>

/// Extreme right.
pub const MAX_X : i16 = 32767;

/// Extreme left.
pub const MIN_X : i16 = -32768;

/// Maximum height.
pub const MAX_Y : i16 = 32767;

/// Minimum height.
pub const MIN_Y : i16 = -32768;

/// Total width of the projection surface.
pub const WIDTH : u16 = 65535;

/// Total height of the projection surface.
pub const HEIGHT : u16 = 65535;