mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
DIRECTOR: Make rendering tests work in 32bpp
This commit is contained in:
parent
29533d9c5e
commit
5ea23f666f
@ -725,7 +725,12 @@ static const byte mouseDown[] = {
|
||||
* All other color ids can be converted with: 255 - colorId.
|
||||
**/
|
||||
uint32 DirectorEngine::transformColor(uint32 color) {
|
||||
return 255 - color;
|
||||
if (_pixelformat.bytesPerPixel == 1)
|
||||
return 255 - color;
|
||||
|
||||
color = 255 - color;
|
||||
|
||||
return _wm->findBestColor(_currentPalette[color * 3], _currentPalette[color * 3 + 1], _currentPalette[color * 3 + 2]);
|
||||
}
|
||||
|
||||
void DirectorEngine::loadPatterns() {
|
||||
|
@ -54,8 +54,8 @@ void Window::testFontScaling() {
|
||||
|
||||
Graphics::ManagedSurface surface;
|
||||
|
||||
surface.create(w, h);
|
||||
surface.clear(255);
|
||||
surface.create(w, h, _wm->_pixelformat);
|
||||
surface.clear(_wm->_colorWhite);
|
||||
|
||||
Graphics::MacFont origFont(Graphics::kMacFontNewYork, 18);
|
||||
|
||||
@ -93,7 +93,10 @@ void Window::testFontScaling() {
|
||||
|
||||
for (x = x1; x < x1 + 6; x++)
|
||||
for (y = y1; y < y1 + 6; y++)
|
||||
*((byte *)surface.getBasePtr(x, y)) = _vm->transformColor(i * 16 + j);
|
||||
if (_wm->_pixelformat.bytesPerPixel == 1)
|
||||
*((byte *)surface.getBasePtr(x, y)) = _vm->transformColor(i * 16 + j);
|
||||
else
|
||||
*((uint32 *)surface.getBasePtr(x, y)) = _vm->transformColor(i * 16 + j);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user