Giter Club home page Giter Club logo

glsl-vue-loader's Introduction

GLSL vue loader

This is a webpack loader which is used to load a fragment shader to a Vue.js component.

Uniforms will be automatically converted to Vue.js property.

Quick glimpse

Go to the samples folder, run the following command:

webpack

You will get ./samples/dist/main.js, It is a Vue.js component.

Then open ./samples/draw.html, you will see a graph rendered by webgl.

How to use

The loader(GLSL vue loader) will create a vue component with a template which will contain a canvas element. All uniforms used in the shader code will be compile into vue component's property.

To use the loader, you can follow the steps below:

  1. Add rule to your webpack.config.js, for example test .frag extension (see ./samples/webpack.config.js)
  2. Create a fragment shader with ".frag" extension.(see ./samples/draw.frag)
  3. require/import this .frag file in your .js file(see ./main.js) as its a vue component.
  4. (optional) Create a vertex shader with the same name as .frag file with extension ".vert", it will be automitically loaded into the vue component.(see ./samples/draw.vert) The default vertext shader will draw in the full canvas.

Properties

The created vue component will hold the flowing properties:

  • width: the width of the canvas.
  • height: the height of the canvas.
  • indicesCount: default 5, indicesCount needed by webglcontext.drawArrays, dont modify if you are using default vertext shader.
  • indicesStart: default 0, indicesStart needed by webglcontext.drawArrays.

Besides, if you declared uniforms in shader code, a property with same name will be added to this vue component. For example:

uniform float iTime;
//other shader code ......

The generated vue component will hold a property "iTime". You can use it like:

<myComponent v-bind:iTime={3.5}></myComponent>

glsl-vue-loader's People

Contributors

wintercn avatar

Watchers

 avatar  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.