7 releases

0.1.6 Oct 25, 2023
0.1.5 Aug 26, 2023
0.1.4 Nov 24, 2022
0.1.3 May 21, 2022
0.1.2 Sep 11, 2021

#327 in Rendering

29 downloads per month

MIT license

5.5MB
150K SLoC

C 150K SLoC JavaScript 133 SLoC Scheme 101 SLoC Rust 32 SLoC // 0.3% comments

tree-sitter-glsl

This is a extension of tree-sitter-c to support the syntax of GLSL (https://www.khronos.org/opengl/wiki/Core_Language_(GLSL)).


lib.rs:

This crate provides glsl language support for the tree-sitter parsing library.

Typically, you will use the language function to add this language to a tree-sitter Parser, and then use the parser to parse some code:

let code = "";
let mut parser = tree_sitter::Parser::new();
parser.set_language(tree_sitter_glsl::language()).expect("Error loading glsl grammar");
let tree = parser.parse(code, None).unwrap();

Dependencies

~2.7–4MB
~71K SLoC