From 9f37ee5257477d6508b3084e601841ea8901bdbc Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 22 Mar 2016 13:11:01 +0300 Subject: [PATCH] remove extra logging --- src/dlangui/graphics/glsupport.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dlangui/graphics/glsupport.d b/src/dlangui/graphics/glsupport.d index be74b18f..0cc6782f 100644 --- a/src/dlangui/graphics/glsupport.d +++ b/src/dlangui/graphics/glsupport.d @@ -1115,7 +1115,7 @@ class GLVertexBuffer : VertexBuffer { checkgl!glVertexAttribPointer(loc, _format[i].size, GL_FLOAT, GL_FALSE, _format.vertexSize, cast(char*)(offset)); checkgl!glEnableVertexAttribArray(loc); } else { - Log.d("Attribute location not found for ", _format[i].type); + //Log.d("Attribute location not found for ", _format[i].type); } offset += _format[i].byteSize; } @@ -1208,7 +1208,7 @@ class DummyVertexBuffer : VertexBuffer { checkgl!glVertexAttribPointer(loc, _format[i].size, GL_FLOAT, GL_FALSE, _format.vertexSize, cast(char*)(offset)); checkgl!glEnableVertexAttribArray(loc); } else { - Log.d("Attribute location not found for ", _format[i].type); + //Log.d("Attribute location not found for ", _format[i].type); } offset += _format[i].byteSize; }