azul_webrender_build/
lib.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5#[macro_use]
6extern crate bitflags;
7
8#[macro_use]
9extern crate lazy_static;
10
11#[cfg(any(feature = "serde"))]
12#[macro_use]
13extern crate serde;
14
15pub mod shader;
16pub mod shader_features;
17
18/// This must be known at build-time as the shaders depend on it.
19pub const MAX_VERTEX_TEXTURE_WIDTH: usize = 1024;