More Code Cleanup (#2192)

* Harmonizing ( and ) in function calls
* static const -> constexpr
* Fix compile issue
* Unify shader tab size
* Add _fs and _vs to shaders
* Harmonize spacing
This commit is contained in:
Alexander Bock
2022-07-26 11:22:41 +02:00
committed by GitHub
parent 9cc4c595a8
commit c1252902c7
223 changed files with 2359 additions and 3244 deletions
+2 -2
View File
@@ -69,7 +69,7 @@ std::string makeIdentifier(std::string s) {
"if openspace.hasSceneGraphNode('{0}') then "
"openspace.removeSceneGraphNode('{0}') "
"end "
"openspace.addSceneGraphNode( {{ Identifier = '{0}' }} )",
"openspace.addSceneGraphNode({{ Identifier = '{0}' }})",
RenderedPathIdentifier
);
@@ -192,7 +192,7 @@ std::string makeIdentifier(std::string s) {
"if openspace.hasSceneGraphNode('{0}') then "
"openspace.removeSceneGraphNode('{0}') "
"end "
"openspace.addSceneGraphNode( {{ Identifier = '{0}' }} )",
"openspace.addSceneGraphNode({{ Identifier = '{0}' }})",
RenderedPointsIdentifier
);