Skip to content

Instantly share code, notes, and snippets.

@edisonlee55
Forked from keijiro/prng.cginc
Created May 4, 2022 06:52
Show Gist options
  • Save edisonlee55/651bb3f0281dce5a3ada2db5a362e102 to your computer and use it in GitHub Desktop.
Save edisonlee55/651bb3f0281dce5a3ada2db5a362e102 to your computer and use it in GitHub Desktop.
One liner pseudo random generator with HLSL
float nrand(float2 uv)
{
return frac(sin(dot(uv, float2(12.9898, 78.233))) * 43758.5453);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment