├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── test └── wgsl-preprocessor.test.js └── wgsl-preprocessor.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toji/wgsl-preprocessor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toji/wgsl-preprocessor/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toji/wgsl-preprocessor/HEAD/package.json -------------------------------------------------------------------------------- /test/wgsl-preprocessor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toji/wgsl-preprocessor/HEAD/test/wgsl-preprocessor.test.js -------------------------------------------------------------------------------- /wgsl-preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toji/wgsl-preprocessor/HEAD/wgsl-preprocessor.js --------------------------------------------------------------------------------