Clean up toy volume module

This commit is contained in:
Emil Axelsson
2016-10-04 12:04:06 +02:00
parent 3f3083b419
commit 74dd1873f0
2 changed files with 2 additions and 9 deletions

View File

@@ -33,13 +33,6 @@
#include <glm/gtc/matrix_transform.hpp>
#include <ghoul/opengl/ghoul_gl.h>
namespace {
const std::string GlslRayCastPath = "${MODULES}/toyvolume/shaders/rayCast.glsl";
const std::string GlslBoundsVsPath = "${MODULES}/toyvolume/shaders/boundsVs.glsl";
const std::string GlslBoundsFsPath = "${MODULES}/toyvolume/shaders/boundsFs.glsl";
}
namespace openspace {
RenderableToyVolume::RenderableToyVolume(const ghoul::Dictionary& dictionary)

View File

@@ -34,8 +34,8 @@
namespace {
const std::string GlslRaycastPath = "${MODULES}/toyvolume/shaders/raycast.glsl";
const std::string GlslBoundsVsPath = "${MODULES}/toyvolume/shaders/boundsVs.glsl";
const std::string GlslBoundsFsPath = "${MODULES}/toyvolume/shaders/boundsFs.glsl";
const std::string GlslBoundsVsPath = "${MODULES}/toyvolume/shaders/boundsvs.glsl";
const std::string GlslBoundsFsPath = "${MODULES}/toyvolume/shaders/boundsfs.glsl";
}
namespace openspace {