Bug 740372 - Handle MOZ_GFX_OPTIMIZE_MOBILE in gfxASurface and gfx2DGlue format conversion functions. r=jrmuizel

This commit is contained in:
George Wright 2012-03-30 11:56:08 -04:00
Родитель 493eca06a7
Коммит 960bf080cc
2 изменённых файлов: 9 добавлений и 0 удалений

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

@ -175,6 +175,7 @@ inline gfxMatrix ThebesMatrix(const Matrix &aMatrix)
inline gfxASurface::gfxContentType ContentForFormat(const SurfaceFormat &aFormat)
{
switch (aFormat) {
case FORMAT_R5G6B5:
case FORMAT_B8G8R8X8:
return gfxASurface::CONTENT_COLOR;
case FORMAT_A8:
@ -189,7 +190,11 @@ inline SurfaceFormat FormatForContent(gfxASurface::gfxContentType aContent)
{
switch (aContent) {
case gfxASurface::CONTENT_COLOR:
#ifdef MOZ_GFX_OPTIMIZE_MOBILE
return FORMAT_R5G6B5;
#else
return FORMAT_B8G8R8X8;
#endif
case gfxASurface::CONTENT_ALPHA:
return FORMAT_A8;
default:

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

@ -460,7 +460,11 @@ gfxASurface::FormatFromContent(gfxASurface::gfxContentType type)
return ImageFormatA8;
case CONTENT_COLOR:
default:
#ifdef MOZ_GFX_OPTIMIZE_MOBILE
return ImageFormatRGB16_565;
#else
return ImageFormatRGB24;
#endif
}
}