summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/localconsts.h3
-rw-r--r--src/resources/atlasmanager.cpp9
-rw-r--r--src/resources/image.cpp11
-rw-r--r--src/resources/resourcemanager.cpp9
-rw-r--r--src/resources/subimage.cpp10
5 files changed, 42 insertions, 0 deletions
diff --git a/src/localconsts.h b/src/localconsts.h
index a6043e58f..d146e2787 100644
--- a/src/localconsts.h
+++ b/src/localconsts.h
@@ -81,4 +81,7 @@
// draw calls
// #define DEBUG_DRAW_CALLS 1
+// debug images usage
+#define DEBUG_IMAGES 1
+
#include "utils/perfomance.h"
diff --git a/src/resources/atlasmanager.cpp b/src/resources/atlasmanager.cpp
index a5d7c2ccc..01ea66233 100644
--- a/src/resources/atlasmanager.cpp
+++ b/src/resources/atlasmanager.cpp
@@ -123,6 +123,9 @@ void AtlasManager::loadImages(const StringVect &files,
if (image)
{
image->mIdPath = str;
+#ifdef DEBUG_IMAGES
+ logger->log("set name %p, %s", image, image->mIdPath.c_str());
+#endif
images.push_back(image);
}
}
@@ -268,6 +271,9 @@ void AtlasManager::convertAtlas(TextureAtlas *const atlas)
return;
image->mIdPath = atlas->name;
+#ifdef DEBUG_IMAGES
+ logger->log("set name %p, %s", image, image->mIdPath.c_str());
+#endif
image->incRef();
FOR_EACH (std::vector<AtlasItem*>::iterator, it, atlas->items)
@@ -282,6 +288,9 @@ void AtlasManager::convertAtlas(TextureAtlas *const atlas)
if (image2)
{
image2->mIdPath = item->name;
+#ifdef DEBUG_IMAGES
+ logger->log("set name %p, %s", image2, image2->mIdPath.c_str());
+#endif
image2->incRef();
}
}
diff --git a/src/resources/image.cpp b/src/resources/image.cpp
index 7f2fd6fbd..49650fef3 100644
--- a/src/resources/image.cpp
+++ b/src/resources/image.cpp
@@ -65,6 +65,10 @@ Image::Image(SDL_Surface *const image, const bool hasAlphaChannel0,
mIsAlphaVisible(hasAlphaChannel0),
mIsAlphaCalculated(false)
{
+#ifdef DEBUG_IMAGES
+ logger->log("created: %p", this);
+#endif
+
mBounds.x = 0;
mBounds.y = 0;
@@ -102,6 +106,10 @@ Image::Image(const GLuint glimage, const int width, const int height,
mIsAlphaVisible(true),
mIsAlphaCalculated(false)
{
+#ifdef DEBUG_IMAGES
+ logger->log("created: %p", this);
+#endif
+
mBounds.x = 0;
mBounds.y = 0;
mBounds.w = static_cast<uint16_t>(width);
@@ -121,6 +129,9 @@ Image::Image(const GLuint glimage, const int width, const int height,
Image::~Image()
{
+#ifdef DEBUG_IMAGES
+ logger->log("delete: %p, %s, %s", this, mIdPath.c_str(), mSource.c_str());
+#endif
unload();
}
diff --git a/src/resources/resourcemanager.cpp b/src/resources/resourcemanager.cpp
index 03cc2bc41..a3adce7bb 100644
--- a/src/resources/resourcemanager.cpp
+++ b/src/resources/resourcemanager.cpp
@@ -448,6 +448,9 @@ bool ResourceManager::addResource(const std::string &idPath,
{
resource->incRef();
resource->mIdPath = idPath;
+#ifdef DEBUG_IMAGES
+ logger->log("set name %p, %s", resource, resource->mIdPath.c_str());
+#endif
mResources[idPath] = resource;
return true;
}
@@ -517,6 +520,9 @@ Resource *ResourceManager::get(const std::string &idPath, const generator fun,
{
resource->incRef();
resource->mIdPath = idPath;
+#ifdef DEBUG_IMAGES
+ logger->log("set name %p, %s", resource, resource->mIdPath.c_str());
+#endif
mResources[idPath] = resource;
cleanOrphans();
}
@@ -531,6 +537,9 @@ Resource *ResourceManager::get(const std::string &idPath, const generator fun,
{
resource->incRef();
resource->mIdPath = idPath;
+#ifdef DEBUG_IMAGES
+ logger->log("set name %p, %s", resource, resource->mIdPath.c_str());
+#endif
}
else
{
diff --git a/src/resources/subimage.cpp b/src/resources/subimage.cpp
index c7e250b78..b2343c71c 100644
--- a/src/resources/subimage.cpp
+++ b/src/resources/subimage.cpp
@@ -28,6 +28,10 @@
#include "safeopenglgraphics.h"
#endif
+#ifdef DEBUG_IMAGES
+#include "logger.h"
+#endif
+
#include "client.h"
#include "debug.h"
@@ -47,6 +51,9 @@ SubImage::SubImage(Image *const parent, SDL_Surface *const image,
mIsAlphaVisible = mHasAlphaChannel;
mAlphaChannel = mParent->SDLgetAlphaChannel();
mSource = parent->getIdPath();
+#ifdef DEBUG_IMAGES
+ logger->log("set name2 %p, %s", this, mSource.c_str());
+#endif
#ifdef DEBUG_BIND_TEXTURE
mIdPath = parent->getIdPath();
#endif
@@ -103,6 +110,9 @@ SubImage::SubImage(Image *const parent, const GLuint image,
mInternalBounds.w = mParent->mBounds.w;
mInternalBounds.h = mParent->mBounds.h;
mSource = parent->getIdPath();
+#ifdef DEBUG_IMAGES
+ logger->log("set name2 %p, %s", this, mSource.c_str());
+#endif
#ifdef DEBUG_BIND_TEXTURE
mIdPath = parent->getIdPath();
#endif