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.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/yage/core/imageloader.cpp b/yage/core/imageloader.cpp
index 4905bf5e..d3c978c1 100644
--- a/yage/core/imageloader.cpp
+++ b/yage/core/imageloader.cpp
@@ -11,15 +11,11 @@
#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
{
@@ -32,7 +28,6 @@ Texture ImageLoader::loadPng(const std::string &file_path)
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);