webgl-mock
v0.1.7
Published
A simple implementation-less interface for testing code outside of WebGL
Downloads
22,319
Readme
webgl-mock.js
A simple implementation-less interface for testing code outside of WebGL.
Installation
Requires node.
npm install webgl-mock
Usage
Write source code using webgl.
function VertexBuffer( gl, options ) {
options = options || {};
this.gl = gl;
this.type = ( options.type !== undefined ) ? options.type : gl.FLOAT;
this.mode = ( options.mode !== undefined ) ? options.mode : gl.TRIANGLES;
this.buffer = gl.createBuffer();
gl.bindBuffer( gl.ARRAY_BUFFER, this.buffer );
gl.bufferData( gl.ARRAY_BUFFER, options.data || options.size, gl.STATIC_DRAW );
gl.bindBuffer( gl.ARRAY_BUFFER, null );
}
Test source code outside of webgl.
require('webgl-mock');
var canvas = new HTMLCanvasElement( 500, 500 );
var gl = canvas.getContext( 'webgl' );
describe('VertexBuffer', function() {
describe('#constructor()', function() {
it('should default type to gl.FLOAT', function() {
var vb = new VertexBuffer( gl );
assert( vb.type === gl.FLOAT );
});
it('should default mode to gl.TRIANGLES', function() {
var vb = new VertexBuffer( gl );
assert( vb.type === gl.TRIANGLES );
});
});
});