Fixes for support for multisampled Linux/GLX GLContexts

This commit is contained in:
Jeff Gilbert 2011-10-19 15:09:57 -04:00
Родитель d51afab888
Коммит ae97d400af
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1238,7 +1238,7 @@ GLContextProviderGLX::CreateOffscreen(const gfxIntSize& aSize,
const ContextFormat& aFormat)
{
ContextFormat actualFormat(aFormat);
actualFormat.samples = 0;
// actualFormat.samples = 0;
nsRefPtr<GLContextGLX> glContext =
CreateOffscreenPixmapContext(aSize, actualFormat, true);
@ -1253,7 +1253,7 @@ GLContextProviderGLX::CreateOffscreen(const gfxIntSize& aSize,
return nsnull;
}
if (!glContext->ResizeOffscreenFBO(aSize)) {
if (!glContext->ResizeOffscreenFBO(aSize, true)) {
// we weren't able to create the initial
// offscreen FBO, so this is dead
return nsnull;