From 0e8dbc40b1cf81c5c34706744f0e0b188bc3100d Mon Sep 17 00:00:00 2001 From: danij Date: Sat, 4 Aug 2012 10:07:28 +0100 Subject: [PATCH] Refactor: Switched source files for Texture and Textures to C++ --- doomsday/engine/engine.pro | 4 ++-- .../engine/portable/src/resource/{texture.c => texture.cpp} | 0 .../src/resource/{texturevariant.c => texturevariant.cpp} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename doomsday/engine/portable/src/resource/{texture.c => texture.cpp} (100%) rename doomsday/engine/portable/src/resource/{texturevariant.c => texturevariant.cpp} (100%) diff --git a/doomsday/engine/engine.pro b/doomsday/engine/engine.pro index 19bfc597c7..ab4d85b441 100644 --- a/doomsday/engine/engine.pro +++ b/doomsday/engine/engine.pro @@ -595,9 +595,9 @@ SOURCES += \ portable/src/resource/material.c \ portable/src/resource/materials.cpp \ portable/src/resource/materialvariant.c \ - portable/src/resource/texture.c \ + portable/src/resource/texture.cpp \ portable/src/resource/textures.cpp \ - portable/src/resource/texturevariant.c \ + portable/src/resource/texturevariant.cpp \ portable/src/resourcenamespace.c \ portable/src/s_cache.c \ portable/src/s_environ.cpp \ diff --git a/doomsday/engine/portable/src/resource/texture.c b/doomsday/engine/portable/src/resource/texture.cpp similarity index 100% rename from doomsday/engine/portable/src/resource/texture.c rename to doomsday/engine/portable/src/resource/texture.cpp diff --git a/doomsday/engine/portable/src/resource/texturevariant.c b/doomsday/engine/portable/src/resource/texturevariant.cpp similarity index 100% rename from doomsday/engine/portable/src/resource/texturevariant.c rename to doomsday/engine/portable/src/resource/texturevariant.cpp