diff options
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/CMakeLists.txt | 2 | ||||
-rw-r--r-- | helpers/glfeatures.cpp (renamed from helpers/glprofile.cpp) | 6 | ||||
-rw-r--r-- | helpers/glfeatures.hpp (renamed from helpers/glprofile.hpp) | 6 |
3 files changed, 6 insertions, 8 deletions
diff --git a/helpers/CMakeLists.txt b/helpers/CMakeLists.txt index e2277d04..b4e96481 100644 --- a/helpers/CMakeLists.txt +++ b/helpers/CMakeLists.txt @@ -8,7 +8,7 @@ include_directories ( ) add_convenience_library (glhelpers - glprofile.cpp + glfeatures.cpp eglsize.cpp ) add_dependencies (glhelpers glproc) diff --git a/helpers/glprofile.cpp b/helpers/glfeatures.cpp index 5520c032..0a815a56 100644 --- a/helpers/glprofile.cpp +++ b/helpers/glfeatures.cpp @@ -24,7 +24,7 @@ **************************************************************************/ -#include "glprofile.hpp" +#include "glfeatures.hpp" #include <assert.h> @@ -34,7 +34,7 @@ #include "glproc.hpp" -namespace glprofile { +namespace glfeatures { bool @@ -322,4 +322,4 @@ Extensions::has(const char *string) const } -} /* namespace glprofile */ +} /* namespace glfeatures */ diff --git a/helpers/glprofile.hpp b/helpers/glfeatures.hpp index 397777dd..4eabc764 100644 --- a/helpers/glprofile.hpp +++ b/helpers/glfeatures.hpp @@ -37,7 +37,7 @@ #include <string> -namespace glprofile { +namespace glfeatures { enum Api { @@ -138,6 +138,4 @@ struct Extensions -} /* namespace glprofile */ - - +} /* namespace glfeatures */ |