Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Get the luma (brightness) of an RGB color in GLSL. Useful for converting images to greyscale
Get the luma (brightness) of an RGB color in GLSL. Useful for converting images to greyscale.
float value = luma(vec3 rgb)
float value = luma(vec4 rgba)
Takes a vec3
or vec4
color as input, returning the luma as a float
.
precision mediump float;
uniform sampler2D uTexture;
varying vec2 vUv;
#pragma glslify: luma = require(glsl-luma)
void main() {
vec4 color = texture2D(uTexture, vUv);
float brightness = luma(color);
gl_FragColor = vec4(vec3(brightness), 1.0);
}
MIT. See LICENSE.md for details.
FAQs
Get the luma (brightness) of an RGB color in GLSL. Useful for converting images to greyscale
The npm package glsl-luma receives a total of 31 weekly downloads. As such, glsl-luma popularity was classified as not popular.
We found that glsl-luma demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.