Merge commit '7621e2f8dec938cf48181c8b10afc9b01f444e68' into beta

This commit is contained in:
Ilya Laktyushin
2025-12-06 02:17:48 +04:00
commit 8344b97e03
28070 changed files with 7995182 additions and 0 deletions
@@ -0,0 +1,28 @@
#include <metal_stdlib>
#pragma once
half getLuma(half3 color);
half3 rgbToHsv(half3 c);
half3 hsvToRgb(half3 c);
half3 rgbToHsl(half3 color);
half hueToRgb(half f1, half f2, half hue);
half3 hslToRgb(half3 hsl);
half3 rgbToYuv(half3 inP);
half3 yuvToRgb(half3 inP);
half easeInOutSigmoid(half value, half strength);
half powerCurve(half inVal, half mag);
float pnoise3D(float3 p);
float2 coordRot(float2 tc, float angle);
float sdfRoundedRectangle(float2 uv, float2 position, float2 size, float radius);