From e5ddb28a2bbfeb1e3597ac490df5af5c7dbf0c16 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 20 Oct 2019 08:04:54 +0200 Subject: [PATCH] - renamed texcache.cpp and moved it to its proper place. The old content no longer exists, this is entirely backend code now. --- source/CMakeLists.txt | 2 +- source/{build/src/texcache.cpp => glbackend/gl_texture.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename source/{build/src/texcache.cpp => glbackend/gl_texture.cpp} (100%) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 07e4740d0..d9b4644da 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -731,6 +731,7 @@ set (PCH_SOURCES glbackend/gl_shader.cpp glbackend/glbackend.cpp glbackend/gl_palmanager.cpp + glbackend/gl_texture.cpp mact/src/animlib.cpp mact/src/control.cpp @@ -774,7 +775,6 @@ set (PCH_SOURCES build/src/sdlayer.cpp build/src/smalltextfont.cpp build/src/softsurface.cpp - build/src/texcache.cpp build/src/textfont.cpp build/src/tiles.cpp build/src/timer.cpp diff --git a/source/build/src/texcache.cpp b/source/glbackend/gl_texture.cpp similarity index 100% rename from source/build/src/texcache.cpp rename to source/glbackend/gl_texture.cpp