Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/templates_osl/gabor_noise.osl')
-rw-r--r--release/scripts/templates_osl/gabor_noise.osl12
1 files changed, 6 insertions, 6 deletions
diff --git a/release/scripts/templates_osl/gabor_noise.osl b/release/scripts/templates_osl/gabor_noise.osl
index 1f5910685d2..9c8615afb35 100644
--- a/release/scripts/templates_osl/gabor_noise.osl
+++ b/release/scripts/templates_osl/gabor_noise.osl
@@ -6,12 +6,12 @@ shader gabor_noise(
float Bandwidth = 1.0,
float Impulses = 16,
output float Gabor = 0.8)
-{
+{
Gabor = noise("gabor", Point,
- "direction", Direction,
- "anisotropic", Anisotropic,
- "do_filter", 1, // Set to 0 to disable filtering/anti-aliasing
- "bandwidth", Bandwidth,
- "impulses", Impulses);
+ "direction", Direction,
+ "anisotropic", Anisotropic,
+ "do_filter", 1, // Set to 0 to disable filtering/anti-aliasing
+ "bandwidth", Bandwidth,
+ "impulses", Impulses);
}