aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-02-11 14:45:11 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-02-11 14:45:11 +0000
commit1b7c1b6fa80d719db2c7ec6d005356bee0c17c4a (patch)
tree521016cbbf89a6b291d2d88d08e2f34702fc7d9d
parent7acdb8e1d29fe50454431d768ddc862b693db8b0 (diff)
Remove debugging printf that was accidentally left in 783.
git-svn-id: http://skia.googlecode.com/svn/trunk@784 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--gpu/include/GrGLConfig.h2
-rw-r--r--gpu/src/GrGpuGL.cpp1
2 files changed, 1 insertions, 2 deletions
diff --git a/gpu/include/GrGLConfig.h b/gpu/include/GrGLConfig.h
index d19f0b9fe3..bb10567607 100644
--- a/gpu/include/GrGLConfig.h
+++ b/gpu/include/GrGLConfig.h
@@ -205,7 +205,7 @@
#endif
#if !defined(GR_GL_NO_CLIENT_SIDE_ARRAYS)
- #define GR_GL_NO_CLIENT_SIDE_ARRAYS 1
+ #define GR_GL_NO_CLIENT_SIDE_ARRAYS 0
#endif
////////////////////////////////////////////////////////////////////////////////
diff --git a/gpu/src/GrGpuGL.cpp b/gpu/src/GrGpuGL.cpp
index 7a83ac8b26..0b5927a3cc 100644
--- a/gpu/src/GrGpuGL.cpp
+++ b/gpu/src/GrGpuGL.cpp
@@ -466,7 +466,6 @@ void GrGpuGL::putClientVertexDataInBuffer(const void* vertexData, size_t vertexD
GrSafeUnref(fClientArrayVB);
fClientArrayVB = (GrGLVertexBuffer*)createVertexBuffer(currMinVBSize, true);
fOversizeVBDrawCnt = 0;
- GrPrintf("Realloc VB 0%08x\n", currMinVBSize);
}
fClientArrayVB->updateData(vertexData, vertexDataSize);
if (currMinVBSize == MIN_VB_SIZE && fClientArrayVB->size() > MIN_VB_SIZE) {