Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jnordberg/glslify-bare

glslify browserify transform for .glsl files
https://github.com/jnordberg/glslify-bare

Last synced: about 2 months ago
JSON representation

glslify browserify transform for .glsl files

Awesome Lists containing this project

README

        

glslify-bare
============

[browserify](https://github.com/substack/node-browserify) transform that compiles .glsl shaders using [glslify](https://github.com/stackgl/glslify).

This module differs from glslify in that it lets you `require('./shader.glsl')` calls directly instead of parsing every file in the browserify transform pipeline searching for calls to `glslify()`.

This makes this transform much more performant than the standard glslify transform but has the drawback of not letting you pass transform options on a per-file basis.

Usage
-----

Use

```javascript
var src = require('./shader.glsl')
```

Instead of

```javascript
var glslify = require('glslify')
var src = glslify(__dirname + '/shader.glsl')
```

Everything else is the same