From ee1012ab3f08074be5fedad72da22a018f15ab23 Mon Sep 17 00:00:00 2001 From: Nicolas Pope <nwpope@utu.fi> Date: Thu, 27 Feb 2020 16:21:57 +0200 Subject: [PATCH] Remove debug out --- applications/gui/src/gltexture.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/applications/gui/src/gltexture.cpp b/applications/gui/src/gltexture.cpp index 88dd31ab9..8b54e22ef 100644 --- a/applications/gui/src/gltexture.cpp +++ b/applications/gui/src/gltexture.cpp @@ -59,7 +59,6 @@ void GLTexture::make(int width, int height) { width_ = width; height_ = height; stride_ = ((width*4) % ALIGNMENT != 0) ? ((width*4) + (ALIGNMENT - ((width*4) % ALIGNMENT))) / 4 : width; - LOG(INFO) << "STRIDE: " << stride_; if (width == 0 || height == 0) { throw FTL_Error("Invalid texture size"); -- GitLab