line_tools 0.2.0

High-performance line rendering for WebGL applications with anti-aliasing and batch processing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod private
{
  /// The vertex shader for the merged line rendering.
  pub const MERGED_VERTEX_SHADER : &'static str = include_str!( "./d3/shaders/merged.vert" );
}

crate::mod_interface!
{
  /// Layer for line-related functionalities.
  layer line;

  own use
  {
    MERGED_VERTEX_SHADER
  };
}