13 releases

new 0.5.3 Jul 23, 2024
0.5.2 Nov 13, 2023
0.5.1 Apr 27, 2023
0.4.1 Sep 5, 2022
0.1.3 Apr 16, 2021

#1015 in Parser implementations

Download history 63/week @ 2024-04-01 11/week @ 2024-04-08 16/week @ 2024-04-15 33/week @ 2024-04-22 10/week @ 2024-04-29 23/week @ 2024-05-06 14/week @ 2024-05-13 31/week @ 2024-05-20 3/week @ 2024-05-27 52/week @ 2024-06-03 49/week @ 2024-06-10 17/week @ 2024-06-17 18/week @ 2024-06-24 46/week @ 2024-07-01 12/week @ 2024-07-08 37/week @ 2024-07-15

114 downloads per month
Used in 5 crates (4 directly)

BSD-3-Clause

695KB
17K SLoC

glsl-lang

Crates.io docs.rs

glsl-lang is a crate implementing a LALR parser for the GLSL 4.x language, with partial support for preprocessor directives. Its AST and features are modeled after Dimitri Sabadie's glsl crate.

See the homepage for more detailed comparison elements.

Examples

Parsing GLSL

use glsl_lang::{ast, parse::DefaultParse};

// Some GLSL source to parse
let source = r#"void main() {
    gl_FragColor = vec4(1., 0.5, 0.25, 1.);
}"#;

// Try parsing the source
let ast = ast::TranslationUnit::parse(source);
assert!(ast.is_ok());

Crate features

This crate has the following features:

  • parser-expr: generate parser code for parsing GLSL expressions
  • parser-statement: generate parser code for parsing GLSL statements

None of these features are enabled by default, as they significantly increase the compile times. As an alternative, you may use the Parsable trait, which wraps grammar rules in suitable source and matches the result to extract the part of the AST we're interested in.

// parse::Parse is not implemented for ast::Expr with the default features
use glsl_lang::{ast, parse::Parsable};

let source = "a = b ? 1.0 : 0.0";

// Parse with Parsable::parse
let ast = ast::Expr::parse(source);
assert!(ast.is_ok());

Author

Alixinne alixinne@pm.me

License

BSD-3-Clause

Dependencies

~3–10MB
~99K SLoC