Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webgl-mock

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webgl-mock

A simple implementation-less interface for testing code outside of WebGL

  • 0.1.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

webgl-mock.js

npm version Dependency Status

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 );
        });
    });
});

Keywords

FAQs

Package last updated on 13 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc