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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-02-03 14:17:39 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-02-03 14:17:39 +0300
commit557074c30ad98aa4cd05f012a25f0d17002b9ac8 (patch)
tree98084b10e09311362c3ac70ca7868dec45318d50 /intern/cycles/kernel/osl/background.cpp
parentd6531a56623b7e037bf3dd5d40462568ecb60301 (diff)
Cycles: Cleanup, indentation
Not sure why it was mixed tabs and spaces, it's all just confusing in different editors.
Diffstat (limited to 'intern/cycles/kernel/osl/background.cpp')
-rw-r--r--intern/cycles/kernel/osl/background.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/intern/cycles/kernel/osl/background.cpp b/intern/cycles/kernel/osl/background.cpp
index 4d70bc80006..85fa7b34bcc 100644
--- a/intern/cycles/kernel/osl/background.cpp
+++ b/intern/cycles/kernel/osl/background.cpp
@@ -77,8 +77,8 @@ public:
ClosureParam *closure_background_params()
{
static ClosureParam params[] = {
- CLOSURE_STRING_KEYPARAM(GenericBackgroundClosure, label, "label"),
- CLOSURE_FINISH_PARAM(GenericBackgroundClosure)
+ CLOSURE_STRING_KEYPARAM(GenericBackgroundClosure, label, "label"),
+ CLOSURE_FINISH_PARAM(GenericBackgroundClosure)
};
return params;
}
@@ -88,7 +88,7 @@ CCLOSURE_PREPARE(closure_background_prepare, GenericBackgroundClosure)
ClosureParam *closure_holdout_params()
{
static ClosureParam params[] = {
- CLOSURE_FINISH_PARAM(HoldoutClosure)
+ CLOSURE_FINISH_PARAM(HoldoutClosure)
};
return params;
}
@@ -98,8 +98,8 @@ CCLOSURE_PREPARE(closure_holdout_prepare, HoldoutClosure)
ClosureParam *closure_ambient_occlusion_params()
{
static ClosureParam params[] = {
- CLOSURE_STRING_KEYPARAM(AmbientOcclusionClosure, label, "label"),
- CLOSURE_FINISH_PARAM(AmbientOcclusionClosure)
+ CLOSURE_STRING_KEYPARAM(AmbientOcclusionClosure, label, "label"),
+ CLOSURE_FINISH_PARAM(AmbientOcclusionClosure)
};
return params;
}