From 80132c8e221aa5a922496c46e23432685885ba04 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Tue, 23 Jan 2024 16:23:53 +0100 Subject: modules-all: Renamed every .h file to .hpp --- modules/window-opengl/SConscript | 2 +- modules/window-opengl/gl_xcb.cpp | 2 +- modules/window-opengl/gl_xcb.hpp | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'modules/window-opengl') diff --git a/modules/window-opengl/SConscript b/modules/window-opengl/SConscript index 7beee1a..1985c0f 100644 --- a/modules/window-opengl/SConscript +++ b/modules/window-opengl/SConscript @@ -13,7 +13,7 @@ dir_path = Dir('.').abspath window_env = env.Clone(); window_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) -window_env.headers = sorted(glob.glob(dir_path + "/*.h")) +window_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) env.sources += window_env.sources; env.headers += window_env.headers; diff --git a/modules/window-opengl/gl_xcb.cpp b/modules/window-opengl/gl_xcb.cpp index 5ea03f3..bddb4bb 100644 --- a/modules/window-opengl/gl_xcb.cpp +++ b/modules/window-opengl/gl_xcb.cpp @@ -1,4 +1,4 @@ -#include "gl_xcb.h" +#include "gl_xcb.hpp" #include #include diff --git a/modules/window-opengl/gl_xcb.hpp b/modules/window-opengl/gl_xcb.hpp index a737e41..79f182c 100644 --- a/modules/window-opengl/gl_xcb.hpp +++ b/modules/window-opengl/gl_xcb.hpp @@ -1,16 +1,16 @@ #pragma once -#include +#include #ifndef SAW_OGL #error "OpenGL is not supported" #endif -#include "gl_backends.hpp -#include "gl_context.hpp -#include "gl_window.hpp +#include "gl_backends.hpp" +#include "gl_context.hpp" +#include "gl_window.hpp" -#include +#include namespace saw { namespace gfx { -- cgit v1.2.3