From 8f457f69ffbb71eb16ab599bd6185381a9612497 Mon Sep 17 00:00:00 2001 From: Taylor Richards Date: Mon, 28 Apr 2014 13:53:16 -0400 Subject: [PATCH] rename gropeng1* to grgl1* for simplified naming later (gl2, gles, wxgl) --- include/{gropengl1.h => grgl1.h} | 0 includes.cmake | 2 +- src/CMakeLists.txt | 6 +++--- src/graphics/{gropengl1.cpp => grgl1.cpp} | 2 +- src/graphics/{gropengl1render.cpp => grgl1render.cpp} | 2 +- src/graphics/{gropengl1texture.cpp => grgl1texture.cpp} | 2 +- src/graphics/gropengl.cpp | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) rename include/{gropengl1.h => grgl1.h} (100%) rename src/graphics/{gropengl1.cpp => grgl1.cpp} (99%) rename src/graphics/{gropengl1render.cpp => grgl1render.cpp} (99%) rename src/graphics/{gropengl1texture.cpp => grgl1texture.cpp} (99%) diff --git a/include/gropengl1.h b/include/grgl1.h similarity index 100% rename from include/gropengl1.h rename to include/grgl1.h diff --git a/includes.cmake b/includes.cmake index a593c71..d3981ff 100644 --- a/includes.cmake +++ b/includes.cmake @@ -78,7 +78,7 @@ set(fs_INCLUDES include/gamesnd.h include/grid.h include/grinternal.h - include/gropengl1.h + include/grgl1.h include/gropengl.h include/gropenglinternal.h include/helpeddoc.h diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3f44840..a0e4fee 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -34,9 +34,9 @@ set(code_SOURCE globalincs/version.cpp graphics/2d.cpp graphics/font.cpp - graphics/gropengl1.cpp - graphics/gropengl1render.cpp - graphics/gropengl1texture.cpp + graphics/grgl1.cpp + graphics/grgl1render.cpp + graphics/grgl1texture.cpp graphics/gropengl.cpp hud/hud.cpp hud/hudartillery.cpp diff --git a/src/graphics/gropengl1.cpp b/src/graphics/grgl1.cpp similarity index 99% rename from src/graphics/gropengl1.cpp rename to src/graphics/grgl1.cpp index 4b52545..5de8a46 100644 --- a/src/graphics/gropengl1.cpp +++ b/src/graphics/grgl1.cpp @@ -7,7 +7,7 @@ */ #include "gropengl.h" -#include "gropengl1.h" +#include "grgl1.h" #include "gropenglinternal.h" #include "2d.h" #include "mouse.h" diff --git a/src/graphics/gropengl1render.cpp b/src/graphics/grgl1render.cpp similarity index 99% rename from src/graphics/gropengl1render.cpp rename to src/graphics/grgl1render.cpp index 258c5df..96381f6 100644 --- a/src/graphics/gropengl1render.cpp +++ b/src/graphics/grgl1render.cpp @@ -9,7 +9,7 @@ #include "pstypes.h" #include "2d.h" #include "gropengl.h" -#include "gropengl1.h" +#include "grgl1.h" #include "gropenglinternal.h" #include "bmpman.h" #include "grinternal.h" diff --git a/src/graphics/gropengl1texture.cpp b/src/graphics/grgl1texture.cpp similarity index 99% rename from src/graphics/gropengl1texture.cpp rename to src/graphics/grgl1texture.cpp index 5212d36..1740e90 100644 --- a/src/graphics/gropengl1texture.cpp +++ b/src/graphics/grgl1texture.cpp @@ -9,7 +9,7 @@ #include "pstypes.h" #include "2d.h" #include "gropengl.h" -#include "gropengl1.h" +#include "grgl1.h" #include "gropenglinternal.h" #include "bmpman.h" #include "grinternal.h" diff --git a/src/graphics/gropengl.cpp b/src/graphics/gropengl.cpp index 9be6bf9..f3fec99 100644 --- a/src/graphics/gropengl.cpp +++ b/src/graphics/gropengl.cpp @@ -9,7 +9,7 @@ #include "pstypes.h" #include "osregistry.h" #include "gropengl.h" -#include "gropengl1.h" +#include "grgl1.h" #include "gropenglinternal.h" #include "2d.h" #include "bmpman.h" -- 2.39.2