diff options
author | Andreas Grois <andi@grois.info> | 2018-03-17 17:48:12 +0100 |
---|---|---|
committer | Andreas Grois <andi@grois.info> | 2018-03-17 17:48:12 +0100 |
commit | 5a9c8599daee7d1d569ade3647d0078e56123c7a (patch) | |
tree | acc858a213a58ac52912e552950cf905dec93598 | |
parent | e26b273f2c772ab19daade19dfb3163842200c6d (diff) |
Again, cleaned code a bit
-rw-r--r-- | BuddhaTest/Shaders/BuddhaCompute.glsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuddhaTest/Shaders/BuddhaCompute.glsl b/BuddhaTest/Shaders/BuddhaCompute.glsl index ec246d1..c94df12 100644 --- a/BuddhaTest/Shaders/BuddhaCompute.glsl +++ b/BuddhaTest/Shaders/BuddhaCompute.glsl @@ -70,7 +70,7 @@ float hash1(uint seed, out uint hash) vec2 compSqr(in vec2 v)
{
- return vec2(v.x*v.x-v.y*v.y, 2.0*v.x*v.y);
+ return vec2(v.x*v.x-v.y*v.y, 2.0*v.x*v.y);
}
bool isInMainCardioid(vec2 v)
|