зеркало из https://github.com/mozilla/pjs.git
Bug 297683. More WinCE-only GFX fixup. Setting a default palette, act more like windows 95.
This commit is contained in:
Родитель
59671ced1b
Коммит
6502043044
|
@ -607,14 +607,16 @@ NS_IMETHODIMP nsDeviceContextWin::GetPaletteInfo(nsPaletteInfo& aPaletteInfo)
|
||||||
aPaletteInfo.sizePalette = mPaletteInfo.sizePalette;
|
aPaletteInfo.sizePalette = mPaletteInfo.sizePalette;
|
||||||
aPaletteInfo.numReserved = mPaletteInfo.numReserved;
|
aPaletteInfo.numReserved = mPaletteInfo.numReserved;
|
||||||
|
|
||||||
#ifndef WINCE
|
|
||||||
if (NULL == mPaletteInfo.palette) {
|
if (NULL == mPaletteInfo.palette) {
|
||||||
|
#ifndef WINCE
|
||||||
HWND hwnd = (HWND)mWidget;
|
HWND hwnd = (HWND)mWidget;
|
||||||
HDC hdc = ::GetDC(hwnd);
|
HDC hdc = ::GetDC(hwnd);
|
||||||
mPaletteInfo.palette = ::CreateHalftonePalette(hdc);
|
mPaletteInfo.palette = ::CreateHalftonePalette(hdc);
|
||||||
::ReleaseDC(hwnd, hdc);
|
::ReleaseDC(hwnd, hdc);
|
||||||
}
|
#else
|
||||||
|
mPaletteInfo.palette = (HPALETTE) GetStockObject(DEFAULT_PALETTE);
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
aPaletteInfo.palette = mPaletteInfo.palette;
|
aPaletteInfo.palette = mPaletteInfo.palette;
|
||||||
|
|
||||||
|
|
|
@ -84,7 +84,7 @@ PRBool IsWin95OrWin98()
|
||||||
}
|
}
|
||||||
return gIsWIN95OR98;
|
return gIsWIN95OR98;
|
||||||
#else
|
#else
|
||||||
return PR_FALSE;
|
return PR_TRUE;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1406,6 +1406,10 @@ ALPHABLENDPROC nsImageWin::gAlphaBlend = NULL;
|
||||||
|
|
||||||
PRBool nsImageWin::CanAlphaBlend(void)
|
PRBool nsImageWin::CanAlphaBlend(void)
|
||||||
{
|
{
|
||||||
|
#ifdef WINCE
|
||||||
|
gAlphaBlend = nsnull;
|
||||||
|
return PR_FALSE;
|
||||||
|
#else
|
||||||
static PRBool alreadyChecked = PR_FALSE;
|
static PRBool alreadyChecked = PR_FALSE;
|
||||||
|
|
||||||
if (!alreadyChecked) {
|
if (!alreadyChecked) {
|
||||||
|
@ -1424,6 +1428,7 @@ PRBool nsImageWin::CanAlphaBlend(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
return gAlphaBlend != NULL;
|
return gAlphaBlend != NULL;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче