[Bf-blender-cvs] [67e690f5fcc] master: Cycles: Cleanup, indentation

Sergey Sharybin noreply at git.blender.org
Fri Jul 27 11:19:39 CEST 2018


Commit: 67e690f5fcc084fbd949240f2c7733854079efc5
Author: Sergey Sharybin
Date:   Fri Jul 27 11:19:29 2018 +0200
Branches: master
https://developer.blender.org/rB67e690f5fcc084fbd949240f2c7733854079efc5

Cycles: Cleanup, indentation

===================================================================

M	intern/cycles/graph/node_type.cpp
M	intern/cycles/graph/node_type.h

===================================================================

diff --git a/intern/cycles/graph/node_type.cpp b/intern/cycles/graph/node_type.cpp
index 671ae2d815a..e045777e969 100644
--- a/intern/cycles/graph/node_type.cpp
+++ b/intern/cycles/graph/node_type.cpp
@@ -134,7 +134,7 @@ NodeType::~NodeType()
 
 void NodeType::register_input(ustring name, ustring ui_name, SocketType::Type type, int struct_offset,
                               const void *default_value, const NodeEnum *enum_values,
-							  const NodeType **node_type, int flags, int extra_flags)
+                              const NodeType **node_type, int flags, int extra_flags)
 {
 	SocketType socket;
 	socket.name = name;
diff --git a/intern/cycles/graph/node_type.h b/intern/cycles/graph/node_type.h
index d4e2dbceff6..1d565794b27 100644
--- a/intern/cycles/graph/node_type.h
+++ b/intern/cycles/graph/node_type.h
@@ -114,9 +114,9 @@ struct NodeType
 
 	void register_input(ustring name, ustring ui_name, SocketType::Type type,
 	                    int struct_offset, const void *default_value,
-						const NodeEnum *enum_values = NULL,
-						const NodeType **node_type = NULL,
-						int flags = 0, int extra_flags = 0);
+	                    const NodeEnum *enum_values = NULL,
+	                    const NodeType **node_type = NULL,
+	                    int flags = 0, int extra_flags = 0);
 	void register_output(ustring name, ustring ui_name, SocketType::Type type);
 
 	const SocketType *find_input(ustring name) const;



More information about the Bf-blender-cvs mailing list