Bug 705641 - Add even more output to framebuffer incompleteness abort message. r=jrmuizel

This commit is contained in:
Ali Juma 2011-12-16 14:02:03 -05:00
Родитель 22a311615c
Коммит 8efa6b018a
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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());
}