From 8efa6b018a849cd0b16c09b94a17a4f3611915ae Mon Sep 17 00:00:00 2001 From: Ali Juma Date: Fri, 16 Dec 2011 14:02:03 -0500 Subject: [PATCH] Bug 705641 - Add even more output to framebuffer incompleteness abort message. r=jrmuizel --- gfx/layers/opengl/LayerManagerOGL.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gfx/layers/opengl/LayerManagerOGL.cpp b/gfx/layers/opengl/LayerManagerOGL.cpp index 6e35329b6743..748523aa98e9 100644 --- a/gfx/layers/opengl/LayerManagerOGL.cpp +++ b/gfx/layers/opengl/LayerManagerOGL.cpp @@ -1171,6 +1171,10 @@ LayerManagerOGL::CreateFBOWithTexture(const nsIntRect& aRect, InitMode aInit, msg.AppendInt(result, 16); msg.Append(", mFBOTextureTarget 0x"); msg.AppendInt(mFBOTextureTarget, 16); + msg.Append(", aRect.width "); + msg.AppendInt(aRect.width); + msg.Append(", aRect.height "); + msg.AppendInt(aRect.height); NS_RUNTIMEABORT(msg.get()); }