GLSL450 parser for Rust
View #46
Clone or download
#46 Compare This branch is 10 commits ahead, 4 commits behind master.
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
glsl-quasiquote
glsl
.gitignore
.travis.yml
Cargo.toml
README.md

README.md

GLL 450 parser

Build Status crates.io

This is a GLSL450 parser which aims is to parse a GLSL450-formatted source into an in-memory representation (AST). It strictly follows the grammar rules defined in the official GLSL 450 specifications.

Currently, the parser expects the input source to be &[u8], which provides a pretty poor experience in error reporting. This is a serious issue and is being worked on.