GithubHelp home page GithubHelp logo

nkassis / picogl.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tsherif/picogl.js

0.0 2.0 0.0 3.24 MB

A minimal, WebGL 2-only rendering library

Home Page: https://tsherif.github.io/picogl.js/

License: MIT License

JavaScript 95.42% HTML 3.16% CSS 1.42%

picogl.js's Introduction

PicoGL.js

PicoGL.js is minimal WebGL 2-only rendering library. It's meant for developers who understand the WebGL 2 rendering pipeline and want to use it, but with a more convenient API. Typical usage of PicoGL.js will involve creating programs, vertex buffers, vertex arrays, uniform buffers, framebuffers, textures, transform feedbacks, and combining them into draw calls.

    var app = PicoGL.createApp(canvas)
    .clearColor(0.0, 0.0, 0.0, 1.0);

    var program = app.createProgram(vertexShaderSource, fragmentShaderSource);

    var positions = app.createVertexBuffer(PicoGL.FLOAT, 2, new Float32Array([
        -0.5, -0.5,
         0.5, -0.5,
         0.0,  0.5
    ]));

    var vertexArray = app.createVertexArray()
    .attributeBuffer(0, positions);

    var uniformBuffer = app.createUniformBuffer([
        PicoGL.FLOAT_VEC4,
        PicoGL.FLOAT_VEC4
    ])
    .set(0, new Float32Array([1.0, 0.0, 0.0, 0.3]))
    .set(1, new Float32Array([0.0, 0.0, 1.0, 0.7]))
    .update();

    var drawCall = app.createDrawCall(program, vertexArray)
    .uniformBlock("ColorUniforms", uniformBuffer);

    app.drawCalls([drawCall])
    .clear()
    .draw();

Visit the API docs for more details or the website for live examples of usage.

Note that PicoGL.js is not a scene graph library. There are no objects, hierarchies, transforms, materials, etc. It has been designed only to make management of GPU state more convenient. Its conceptual model maps fairly directly to the constructs one deals with when writing directly with the WebGL 2 API. The only higher-level construct is the draw call, which manages sets of related lower-level constructs.

PicoGL.js simplifies usage of some more complex WebGL 2 features, such as multiple render targets, uniform buffers, transform feedback and instanced drawing.

Multiple Render Targets

    var app = PicoGL.createApp(canvas)
    .clearColor(0.0, 0.0, 0.0, 1.0)
    .floatRenderTargets();  // EXT_color_buffer_float 

    var framebuffer = app.createFramebuffer()
    .colorTarget(0, PicoGL.FLOAT)
    .colorTarget(1, PicoGL.FLOAT)
    .depthTarget();
    
    // ... set up programs and vertex arrays for offscreen and
    // main draw passes...

    var offscreenDrawCall = app.createDrawCall(offscreenProgram, offscreenVAO);

    // Bind main program texture samplers to framebuffer targets
    var mainDrawCall = app.createDrawCall(mainProgram, mainVAO)
    .texture("texture1", frameBuffer.colorTexture[0])
    .texture("texture2", frameBuffer.colorTexture[1])
    .texture("depthTexture", frameBuffer.depthTexture);

    // Offscreen pass
    app.framebuffer(framebuffer)
    .drawCalls([offscreenDrawCall])
    .clear()
    .draw()
    // Main draw pass
    .defaultFramebuffer()
    .drawCalls([mainDrawCall])
    .clear()
    .draw();

Uniform Buffers

    var app = PicoGL.createApp(canvas)
    .clearColor(0.0, 0.0, 0.0, 1.0);
    
    // ... set up program and vertex array...

    // Layout is std140
    var uniformBuffer = app.createUniformBuffer([
        PicoGL.FLOAT_MAT4,
        PicoGL.FLOAT_VEC4,
        PicoGL.INT_VEC4,
        PicoGL.FLOAT
    ])
    .set(0, matrix)
    .set(1, float32Vector)
    .set(2, int32Vector)
    .set(3, scalar)
    .update();      // Data only sent to GPU when update() is called

    var drawCall = app.createDrawCall(program, vertexArray)
    .uniformBlock("UniformBlock", uniformBuffer);

Transform Feedback

    var app = PicoGL.createApp(canvas)
    .clearColor(0.0, 0.0, 0.0, 1.0);

    // Last argument is transform feedback varyings
    var program = app.createProgram(vertexShaderSource, fragmentShaderSource, ["vPosition"]);

    var positions1 = app.createVertexBuffer(PicoGL.FLOAT, 2, new Float32Array([
        -0.5, -0.5,
         0.5, -0.5,
         0.0,  0.5
    ]));
    var vertexArray1 = app.createVertexArray()
    .attributeBuffer(0, positions1);

    // Empty destination buffer of 6 floats
    var positions2 = app.createVertexBuffer(PicoGL.FLOAT, 2, 6);  
    var vertexArray2 = app.createVertexArray()
    .attributeBuffer(0, positions2);

    // Last argument indices of buffers in the vertex arrays that will be used
    // for transform feedback
    var transformFeedback = app.createTransformFeedback(vertexArray1, vertexArray2, [0]);

    var drawCall = app.createDrawCall(program, transformFeedback);

    app.drawCalls([drawCall])
    .clear()
    .draw();

    // Swap input and output buffers
    transformFeedback.swapBuffers();

Instanced Drawing

    var app = PicoGL.createApp(canvas)
    .clearColor(0.0, 0.0, 0.0, 1.0);

    var program = app.createProgram(vertexShaderSource, fragmentShaderSource);

    // The starting positions of the triangle. Each pair of coordinates
    // will be passed per-vertex
    var positions = app.createVertexBuffer(PicoGL.FLOAT, 2, new Float32Array([
        -0.3, -0.3,
         0.3, -0.3,
         0.0,  0.3
    ]));

    // This is an instanced buffer meaning each pair of numbers will be passed
    // per-instance, rather than per-vertex
    var offsets = app.createInstancedVertexBuffer(PicoGL.FLOAT, 2, new Float32Array([
        -0.5, 0.0,
         0.0, 0.2,
         0.5, 0.0
    ]));

    // This vertex array now represents 3 instanced triangles 
    // with the offsets given above
    var vertexArray = app.createVertexArray()
    .attributeBuffer(0, positions);
    .attributeBuffer(1, offset);

picogl.js's People

Contributors

tsherif avatar

Watchers

Nicolas Kassis avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.