Removing more warnings

This commit is contained in:
Alexander Bock
2017-07-17 18:03:37 -04:00
parent 7cfa358f04
commit 7737b082d9
42 changed files with 265 additions and 162 deletions
+4 -4
View File
@@ -162,11 +162,11 @@ SurfacePositionHandle Renderable::calculateSurfacePositionHandle(
const glm::dvec3& targetModelSpace)
{
glm::dvec3 directionFromCenterToTarget = glm::normalize(targetModelSpace);
return {
directionFromCenterToTarget * static_cast<double>(boundingSphere()),
return {
directionFromCenterToTarget * static_cast<double>(boundingSphere()),
directionFromCenterToTarget,
0.0
};
0.0
};
}
void Renderable::setPscUniforms(ghoul::opengl::ProgramObject& program,