summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--shaders/texture-unit-cache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shaders/texture-unit-cache.cpp b/shaders/texture-unit-cache.cpp
index 69995a55..7b84d2d7 100644
--- a/shaders/texture-unit-cache.cpp
+++ b/shaders/texture-unit-cache.cpp
@@ -122,7 +122,7 @@ size_t texture_unit_cache::get_unit_count()
static auto ret = [] {
GLint value = 0;
glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, &value);
- Debug{} << "texture-binding: got" << value << "texture image units";
+ //Debug{} << "texture-binding: got" << value << "texture image units";
fm_assert(value >= /*GL 3.3*/ 16);
//value = 16; // limit for performance testing
return value;