aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/imageloader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'yage/core/imageloader.cpp')
-rw-r--r--yage/core/imageloader.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/yage/core/imageloader.cpp b/yage/core/imageloader.cpp
index 23bc9a25..4cd583d1 100644
--- a/yage/core/imageloader.cpp
+++ b/yage/core/imageloader.cpp
@@ -10,22 +10,28 @@
#include "../data/texture.h"
#include "logger.h"
#include "stb_image.h"
+#include <iostream>
#include <glad/glad.h>
#include <iostream>
#include <stdexcept>
+using std::cout;
+
namespace yage
{
Texture ImageLoader::loadPng(const std::string &file_path)
{
int width, height, num_channels;
+ yLogDebug << "Loading image from disk: " << file_path;
unsigned char *data =
stbi_load(file_path.c_str(), &width, &height, &num_channels, 0);
-
+ yLogDebug << "Sucessfully loaded file";
Texture texture(0, static_cast<int>(width), static_cast<int>(height));
+ yLogDebug << "Creating texture";
+ cout << "Hello";
glGenTextures(1, &texture.id);
glBindTexture(GL_TEXTURE_2D, texture.id);