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

glsl-layer

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

glsl-layer

Layer texels on top of each other in the same shader.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

glsl-layer

stable

Layer texels on top of each other in the same shader.

glsl-layer

Installation :package:

npm i glsl-layer -S

Usage & example :floppy_disk:

#pragma glslify: layer = require('glsl-layer')

attribute vec2 vUv;
uniform sampler2D circle;
uniform sampler2D square;

void main() {
  gl_FragColor = layer(
    texture2D(circle, vUv),
    texture2D(square, vUv)
  );
}

License :pencil:

MIT. See LICENSE for details.

Keywords

FAQs

Package last updated on 20 Mar 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