Bug 698212 - Let UploadSurfaceToTexture create the texture for CairoImageOGL. r=BenWa

This commit is contained in:
Matt Woodrow 2011-10-31 14:03:00 +13:00
Родитель b2e3495b90
Коммит 76d62d4955
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -794,12 +794,10 @@ CairoImageOGL::SetData(const CairoImage::Data &aData)
}
#endif
InitTexture(gl, tex, LOCAL_GL_RGBA, mSize);
mLayerProgram =
gl->UploadSurfaceToTexture(aData.mSurface,
nsIntRect(0,0, mSize.width, mSize.height),
tex);
tex, true);
}
void CairoImageOGL::SetTiling(bool aTiling)