DIRECTOR: Make rendering tests work in 32bpp

This commit is contained in:
Eugene Sandulenko 2020-08-15 12:18:35 +02:00
parent 29533d9c5e
commit 5ea23f666f
2 changed files with 12 additions and 4 deletions

View File

@ -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() {

View File

@ -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);
}
}