Global pass over the code to remove trailing spaces

This commit is contained in:
Alexander Bock
2022-11-22 21:06:52 +01:00
parent 0fe1cb7c23
commit 44e5b17ec9
576 changed files with 2953 additions and 2949 deletions
+6 -5
View File
@@ -182,12 +182,12 @@ LabelsComponent::LabelsComponent(const ghoul::Dictionary& dictionary)
_faceCamera = *p.faceCamera;
}
else {
// @TODO (abock. 2021-01-31) In the other DU classes, this is done with an enum, and
// doing it based on the fisheye rendering seems a bit brittle?
// @TODO (abock. 2021-01-31) In the other DU classes, this is done with an enum,
// and doing it based on the fisheye rendering seems a bit brittle?
// (malej 2022-SEP-14)
// For non-linear display rendering (for example fisheye) _faceCamera should be false,
// otherwise true.
// For non-linear display rendering (for example fisheye) _faceCamera should be
// false, otherwise true
_faceCamera = !global::windowDelegate->isFisheyeRendering();
}
addProperty(_faceCamera);
@@ -219,7 +219,8 @@ bool LabelsComponent::isReady() const {
return !(_labelset.entries.empty());
}
void LabelsComponent::render(const RenderData& data, const glm::dmat4& modelViewProjectionMatrix,
void LabelsComponent::render(const RenderData& data,
const glm::dmat4& modelViewProjectionMatrix,
const glm::vec3& orthoRight, const glm::vec3& orthoUp,
float fadeInVariable)
{