LYGIA Shader Library

srgb2oklab (lygia/color/space/srgb2oklab)

sRGB to OKLab https://bottosson.github.io/posts/oklab/

Dependencies:

Use:

<vec3\vec4> srgb2oklab(<vec3|vec4> srgb)

Check it on Github



#ifndef FNC_SRGB2OKLAB
#define FNC_SRGB2OKLAB
vec3 srgb2oklab(const in vec3 srgb) { return rgb2oklab( srgb2rgb(srgb) ); }
vec4 srgb2oklab(const in vec4 srgb) { return vec4(srgb2oklab(srgb.rgb), srgb.a); }
#endif

Dependencies:

Use:

<float3\float4> srgb2oklab(<float3|float4> srgb)

Check it on Github



#ifndef FNC_SRGB2OKLAB
#define FNC_SRGB2OKLAB
float3 srgb2oklab(const in float3 srgb) { return rgb2oklab( srgb2rgb(srgb) ); }
float4 srgb2oklab(const in float4 srgb) { return float4(srgb2oklab(srgb.rgb), srgb.a); }
#endif

Dependencies:

Check it on Github


fn srgb2oklab(srgb: vec3f) -> vec3f { return rgb2oklab( srgb2rgb(srgb) ); }

License

LYGIA is dual-licensed under the Prosperity License and the Patron License for sponsors and contributors.

Sponsors and contributors are automatically added to the Patron License and they can ignore the any non-commercial rule of the Prosperity Licensed software (please take a look to the exception).

It's also possible to get a permanent comercial license hook to a single and specific version of LYGIA.

Get the latest news and releases

Sign up for the news letter bellow, joing the LYGIA's channel on Discord or follow the Github repository