summaryrefslogtreecommitdiffstats
path: root/gfx/wr/glsl-to-cxx/src/main.rs
blob: e40262c84e11859e71f6488029d38ba7e7e54370 (plain)
1
2
3
4
5
6
7
8
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

use glsl_to_cxx::translate;
fn main() {
    println!("{}", translate(&mut std::env::args()));
}