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-10-24 13:26:12 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-10-24 13:26:12 +0300
commit48997d2e40a74a83fb9edfb9de0999139392f634 (patch)
treebb968328b736dd1f9f5433061d8cfbd10fb6ef9b /intern/cycles/subd
parent3f292596769d699c8347be075a6d4bff8fffd556 (diff)
Cycles: Cleanup, style
Diffstat (limited to 'intern/cycles/subd')
-rw-r--r--intern/cycles/subd/subd_patch_table.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/subd/subd_patch_table.cpp b/intern/cycles/subd/subd_patch_table.cpp
index 62572efa88a..d437b045c07 100644
--- a/intern/cycles/subd/subd_patch_table.cpp
+++ b/intern/cycles/subd/subd_patch_table.cpp
@@ -46,7 +46,7 @@ struct PatchMapQuadNode {
/* sets all the children to point to the patch of index */
void set_child(int index)
{
- for (int i = 0; i < 4; i++) {
+ for(int i = 0; i < 4; i++) {
children[i] = index | PATCH_MAP_NODE_IS_SET | PATCH_MAP_NODE_IS_LEAF;
}
}