mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-15 06:20:41 +00:00
backout bug 767064, 1f9c66d66df4
This commit is contained in:
parent
ee7a247f5a
commit
7445ad31b2
@ -407,33 +407,16 @@ WebGLContext::SetDimensions(PRInt32 width, PRInt32 height)
|
||||
}
|
||||
|
||||
if (!mOptions.alpha) {
|
||||
// Select 565; we won't/shouldn't hit this on the desktop,
|
||||
// but let mobile know we're ok with it.
|
||||
format.red = 5;
|
||||
format.green = 6;
|
||||
format.blue = 5;
|
||||
|
||||
format.alpha = 0;
|
||||
format.minAlpha = 0;
|
||||
}
|
||||
|
||||
// Don't do this on Windows, since we might get a 565 config from ANGLE
|
||||
// and end up causing problems with a surface depth mismatch
|
||||
#ifndef XP_WIN
|
||||
if (gfxPlatform::GetPlatform()->GetScreenDepth() == 16) {
|
||||
// Select 4444 or 565 on 16-bit displays; we won't/shouldn't
|
||||
// hit this on the desktop, but let mobile know we're ok with
|
||||
// it. Note that we don't just set this to 4440 if no alpha,
|
||||
// because that might cause us to choose 4444 anyway and we
|
||||
// don't want that.
|
||||
if (mOptions.alpha) {
|
||||
format.red = 4;
|
||||
format.green = 4;
|
||||
format.blue = 4;
|
||||
format.alpha = 4;
|
||||
} else {
|
||||
format.red = 5;
|
||||
format.green = 6;
|
||||
format.blue = 5;
|
||||
format.alpha = 0;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
bool forceMSAA =
|
||||
Preferences::GetBool("webgl.msaa-force", false);
|
||||
|
||||
|
@ -1278,48 +1278,35 @@ GLContext::ChooseGLFormats(ContextFormat& aCF)
|
||||
{
|
||||
GLFormats formats;
|
||||
|
||||
// If we're on ES2 hardware and we have an explicit request for 16 bits of color or less
|
||||
// OR we don't support full 8-bit color, return a 4444 or 565 format.
|
||||
if (mIsGLES2 && (aCF.colorBits() <= 16 || !IsExtensionSupported(OES_rgb8_rgba8))) {
|
||||
if (aCF.alpha) {
|
||||
if (aCF.alpha) {
|
||||
if (mIsGLES2 && IsExtensionSupported(EXT_texture_format_BGRA8888)) {
|
||||
formats.texColor = LOCAL_GL_BGRA;
|
||||
} else {
|
||||
formats.texColor = LOCAL_GL_RGBA;
|
||||
formats.texColorType = LOCAL_GL_UNSIGNED_SHORT_4_4_4_4;
|
||||
formats.rbColor = LOCAL_GL_RGBA4;
|
||||
}
|
||||
|
||||
if (mIsGLES2 && !IsExtensionSupported(OES_rgb8_rgba8)) {
|
||||
formats.rbColor = LOCAL_GL_RGBA4;
|
||||
aCF.red = aCF.green = aCF.blue = aCF.alpha = 4;
|
||||
} else {
|
||||
formats.texColor = LOCAL_GL_RGB;
|
||||
formats.texColorType = LOCAL_GL_UNSIGNED_SHORT_5_6_5;
|
||||
formats.rbColor = LOCAL_GL_RGBA8;
|
||||
aCF.red = aCF.green = aCF.blue = aCF.alpha = 8;
|
||||
}
|
||||
} else {
|
||||
formats.texColor = LOCAL_GL_RGB;
|
||||
if (mIsGLES2 && !IsExtensionSupported(OES_rgb8_rgba8)) {
|
||||
formats.rbColor = LOCAL_GL_RGB565;
|
||||
|
||||
aCF.red = 5;
|
||||
aCF.green = 6;
|
||||
aCF.blue = 5;
|
||||
aCF.alpha = 0;
|
||||
}
|
||||
} else {
|
||||
formats.texColorType = LOCAL_GL_UNSIGNED_BYTE;
|
||||
|
||||
if (aCF.alpha) {
|
||||
// prefer BGRA8888 on ES2 hardware; if the extension is supported, it
|
||||
// should be faster.
|
||||
if (mIsGLES2 && IsExtensionSupported(EXT_texture_format_BGRA8888)) {
|
||||
formats.texColor = LOCAL_GL_BGRA;
|
||||
} else {
|
||||
formats.texColor = LOCAL_GL_RGBA;
|
||||
}
|
||||
|
||||
formats.rbColor = LOCAL_GL_RGBA8;
|
||||
|
||||
aCF.red = aCF.green = aCF.blue = aCF.alpha = 8;
|
||||
} else {
|
||||
formats.texColor = LOCAL_GL_RGB;
|
||||
formats.rbColor = LOCAL_GL_RGB8;
|
||||
|
||||
aCF.red = aCF.green = aCF.blue = 8;
|
||||
aCF.alpha = 0;
|
||||
}
|
||||
aCF.alpha = 0;
|
||||
}
|
||||
formats.texColorType = LOCAL_GL_UNSIGNED_BYTE;
|
||||
|
||||
|
||||
GLsizei samples = aCF.samples;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user