34 lines
979 B
HLSL
34 lines
979 B
HLSL
![]() |
/******************************************************************************/
|
|||
|
/*
|
|||
|
Project - MudBun
|
|||
|
Publisher - Long Bunny Labs
|
|||
|
http://LongBunnyLabs.com
|
|||
|
Author - Ming-Lun "Allen" Chou
|
|||
|
http://AllenChou.net
|
|||
|
|
|||
|
Based on project "webgl-noise" by Ashima Arts.
|
|||
|
Description : Array and textureless GLSL 2D simplex noise function.
|
|||
|
Author : Ian McEwan, Ashima Arts.
|
|||
|
Maintainer : ijm
|
|||
|
Lastmod : 20110822 (ijm)
|
|||
|
License : Copyright (C) 2011 Ashima Arts. All rights reserved.
|
|||
|
Distributed under the MIT License. See LICENSE file.
|
|||
|
https://github.com/ashima/webgl-noise
|
|||
|
*/
|
|||
|
/******************************************************************************/
|
|||
|
|
|||
|
#ifndef MUDBUN_NOISE
|
|||
|
#define MUDBUN_NOISE
|
|||
|
|
|||
|
#include "CachedNoise3D.cginc"
|
|||
|
|
|||
|
#include "ClassicNoise2D.cginc"
|
|||
|
#include "ClassicNoise3D.cginc"
|
|||
|
|
|||
|
#include "SimplexNoise2D.cginc"
|
|||
|
#include "SimplexNoise3D.cginc"
|
|||
|
|
|||
|
#include "RandomNoise.cginc"
|
|||
|
|
|||
|
#endif
|