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

This commit is contained in:
Ali Juma 2011-12-15 13:06:18 -05:00
Родитель e8413e4709
Коммит b336f1ee50
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -1169,6 +1169,8 @@ LayerManagerOGL::CreateFBOWithTexture(const nsIntRect& aRect, InitMode aInit,
nsCAutoString msg;
msg.Append("Framebuffer not complete -- error 0x");
msg.AppendInt(result, 16);
msg.Append(", mFBOTextureTarget 0x");
msg.AppendInt(mFBOTextureTarget, 16);
NS_RUNTIMEABORT(msg.get());
}