Skip to main content

pathfinder_renderer/gpu/
mod.rs

1// pathfinder/renderer/src/gpu/mod.rs
2//
3// Copyright © 2019 The Pathfinder Project Developers.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11//! The GPU renderer for Pathfinder 3.
12
13pub mod debug;
14pub mod options;
15pub mod renderer;
16
17pub(crate) mod shaders;