diff options
-rw-r--r-- | src/shader/uniform.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shader/uniform.cpp b/src/shader/uniform.cpp index 14a6ae760e..24f179baf1 100644 --- a/src/shader/uniform.cpp +++ b/src/shader/uniform.cpp @@ -1,6 +1,6 @@ #include <mbgl/shader/uniform.hpp> -using namespace mbgl; +namespace mbgl { template <> void Uniform<float>::bind(const float& t) { @@ -43,3 +43,5 @@ void UniformMatrix<4>::bind(const std::array<float, 16>& t) { } // Add more as needed. + +} |