]> git.localhorst.tv Git - blank.git/blobdiff - src/init.hpp
noexcept all the things
[blank.git] / src / init.hpp
index d08437b0cd46b5408cc111733ce6587596ff1b81..30da3beb1cb33a5284fb2772a570dfcee5180d67 100644 (file)
@@ -82,11 +82,11 @@ public:
        GLContext &operator =(const GLContext &) = delete;
 
        static void EnableVSync();
-       static void EnableDepthTest();
-       static void EnableBackfaceCulling();
+       static void EnableDepthTest() noexcept;
+       static void EnableBackfaceCulling() noexcept;
 
-       static void Clear();
-       static void ClearDepthBuffer();
+       static void Clear() noexcept;
+       static void ClearDepthBuffer() noexcept;
 
 private:
        SDL_GLContext handle;