glsl-template-loader

1.2.0 • Public • Published

GLSL Webpack loader that support variables and #include directive.

Install

npm install glsl-template-loader --save-dev

Config Webpack

module: {
  loaders: [{
    test: /\.(glsl|vert|frag)$/,
    loader: 'glsl-template'
  }]
},
// Default values (can be omitted)
glsl: {
  rootPath: '/', // Path to look absolute path chunks at
  chunksExt: 'glsl', // Chunks extension
  varPrefix: '$', // Every valid name that starts with this symbol will be treated as a template variable
  es5: true // Produce template compatible with es5 browsers (IE11)
}

Write some shaders

shader.vert

attribute vec2 a_Position;
attribute vec3 a_Color;

varying vec3 v_Color;

// The content of chunks/reduce-red.glsl file will be inlined here
#include chunks/reduce-red.glsl;

void main(void) {
  v_Color = reduceR(a_Color);
  gl_Position = vec4(a_Position, 0.0, 1.0);
}

shader.frag

precision highp float;

varying vec3 v_Color;

#include chunks/reduce-red.glsl;

void main() {
  gl_FragColor = vec4(reduceR(v_Color), 0.5);
}

chunks/reduce-red.glsl

vec3 reduceR(vec3 color) {
  // We arge going to use a template variable $reduce that would be inlined with it's value
  // Note that we use $reduce.0 to transform int values from template to float
  // Alternatively we can use cast float($reduce) or pass float string to template
  return vec3(color.r / $reduce.0, color.g, color.b);
}

Import your shader templates

import createVertexShader from 'shader.vert';
import createFragmentShader from 'shader.frag';

or

const createVertexShader = require('shader.vert');
const createFragmentShader = require('shader.frag');

Create shaders

// That's how we pass our reduce variable to templates
const vertexShader = createVertexShader({reduce: 5});
const fragmentShader = createFragmentShader({reduce: 2});

Work with nodejs 4

Use --harmony flag to build with nodejs 4.

License

MIT

Package Sidebar

Install

npm i glsl-template-loader

Weekly Downloads

36

Version

1.2.0

License

MIT

Unpacked Size

9.49 kB

Total Files

5

Last publish

Collaborators

  • yuri.karadzhov