Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Set of practical functions for webgl.
program(gl, program?)
program(gl, vertSource, fragSource)
Get/set current program or create new program from vertex and fragment sources.
uniform(gl, name?, data?)
uniform(gl, {name: data, ...})
Get/set uniform or multiple uniforms. Returns object with uniform parameters: {name, location, data, type}
.
texture(gl, name?, data|parameters?)
texture(gl, {name: data|parameters, ...})
Set texture[s] data or parameters:
Name | Meaning |
---|---|
data | Data passed to texture. |
index | Texture unit number, if undefined - calculated automatically. |
filter | Sets texture scaling for both min and mag. Can be defined as two separate properties minFilter and magFilter . By default gl.LINEAR . |
wrap | Defines texture tiling vertically and horizontally. Can be defined precisely as wrapS and wrapT . By default gl.MIRRORED_REPEAT . |
width | In pixels |
height | In pixels |
format | By default gl.RGBA |
type | gl.UNSIGNED_BYTE , can be gl.FLOAT with proper extension enabled |
Returns object with texture properties {data, index, minFilter, magFilter, wrapS, wrapT, width, height, format, type}
.
attribute(gl, name?, data|parameters?)
attribute(gl, {name: data|parameters, ...})
Set attribute[s] data or parameters:
Name | Default | Meaning |
---|---|---|
data | null | Data for the attribute, can be array or typed array |
size | 2 | Number of data items per vertex |
stride | 0 | Offset in bytes between the beginning of consecutive vertex attributes. |
offset | 0 | Offset in bytes of the first component in the data. Must be a multiple of type. |
type | gl.FLOAT | Data type of each component in the data array. Must be one of: gl.BYTE , gl.UNSIGNED_BYTE , gl.SHORT , gl.UNSIGNED_SHORT , gl.FLOAT . |
usage | gl.STATIC_DRAW | Mode of draw: gl.STATIC_DRAW (rare changes), gl.DYNAMIC_DRAW (frequent changes) or gl.STREAM_DRAW (frequent updates) |
normalized | false | If fixed-point data values should be normalized or are to converted to fixed point values when accessed. |
index | 0 | Attribute unit number, detected automatically if omitted. |
target | gl.ARRAY_BUFFER | |
buffer | null | WebGLBuffer to use for attribute |
Returns attribute properties {data, size, stride, offset, usage, type, normalized, index, target, buffer}
Related docs: vertexAttribPointer.
There are regl, stack.gl and other assorted libs, so why bother?
Because I have hard time remembering their API or pure webgl API. Also they supersede webgl API, so that if one would like to debug vanilla webgl for a moment it would be utterly impossible. Also oftentimes I need minimalistic webgl setup, but regl or stack.gl components tend to be relatively massive.
gl-util is like functions from any webgl tutorial. Tiny, handy and already familiar, so.
FAQs
Set of practical webgl utils
The npm package gl-util receives a total of 147,527 weekly downloads. As such, gl-util popularity was classified as popular.
We found that gl-util demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.