aboutsummaryrefslogtreecommitdiffhomepage
path: root/gpu
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-13 18:54:59 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-13 18:54:59 +0000
commitb9255d523f5a9e1414ea52d892ce0a08d42c8b58 (patch)
treec4b707626325441f45ce5c6d32ee25deede56344 /gpu
parent8cdb78c4fd03438aff8fe9d2cb3586ab078163a2 (diff)
drop extraneous GrPrintfs
git-svn-id: http://skia.googlecode.com/svn/trunk@1572 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gpu')
-rw-r--r--gpu/src/GrGpuGL.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/gpu/src/GrGpuGL.cpp b/gpu/src/GrGpuGL.cpp
index 70686d7e68..2d7d512c5e 100644
--- a/gpu/src/GrGpuGL.cpp
+++ b/gpu/src/GrGpuGL.cpp
@@ -1003,8 +1003,6 @@ GrTexture* GrGpuGL::onCreateTexture(const GrTextureDesc& desc,
if (rtIDs.fRTFBOID != rtIDs.fTexFBOID) {
GrGLenum status = GR_GL(CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
- GrPrintf("-- glCheckFramebufferStatus %x %d %d\n",
- status, desc.fWidth, desc.fHeight);
continue;
}
GR_GL(BindFramebuffer(GR_GL_FRAMEBUFFER, rtIDs.fRTFBOID));
@@ -1035,8 +1033,6 @@ GrTexture* GrGpuGL::onCreateTexture(const GrTextureDesc& desc,
status = GR_GL(CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
- GrPrintf("-- glCheckFramebufferStatus %x %d %d\n",
- status, desc.fWidth, desc.fHeight);
// undo the depth bind
if (rtIDs.fStencilRenderbufferID &&
stencilFormats[i].fPacked) {
@@ -1317,7 +1313,7 @@ void GrGpuGL::flushRenderTarget(const GrIRect* bound) {
#if GR_DEBUG
GrGLenum status = GR_GL(CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
- GrPrintf("-- glCheckFramebufferStatus %x\n", status);
+ GrPrintf("GrGpuGL::flushRenderTarget glCheckFramebufferStatus %x\n", status);
}
#endif
fDirtyFlags.fRenderTargetChanged = true;