mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-01 09:10:18 -06:00
Started switching OpenSpace projects to nested namespaces
Various cleanups
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/*****************************************************************************************
|
||||
/*****************************************************************************************
|
||||
* *
|
||||
* OpenSpace *
|
||||
* *
|
||||
@@ -38,7 +38,7 @@
|
||||
#include <iostream>
|
||||
|
||||
namespace {
|
||||
const std::string _loggerCat = "TransferFunction";
|
||||
const char* _loggerCat = "TransferFunction";
|
||||
|
||||
ghoul::opengl::Texture::FilterMode filtermode = ghoul::opengl::Texture::FilterMode::Linear;
|
||||
ghoul::opengl::Texture::WrappingMode wrappingmode = ghoul::opengl::Texture::WrappingMode::ClampToEdge;
|
||||
@@ -52,11 +52,11 @@ namespace {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace
|
||||
|
||||
|
||||
namespace openspace {
|
||||
|
||||
TransferFunction::TransferFunction(const std::string& filepath, TfChangedCallback tfChangedCallback) : _filepath(filepath) {
|
||||
setPath(filepath);
|
||||
setCallback(tfChangedCallback);
|
||||
|
||||
Reference in New Issue
Block a user