BACKENDS: Make suggestSideTextures go through GraphicsManager

This commit is contained in:
Bastien Bouclet 2016-06-18 08:14:40 +02:00
parent 911e0e3915
commit 287f97228f
9 changed files with 12 additions and 14 deletions

View file

@ -108,6 +108,11 @@ Graphics::PixelBuffer ModularBackend::getScreenPixelBuffer() {
return _graphicsManager->getScreenPixelBuffer();
}
// ResidualVM specific method
void ModularBackend::suggestSideTextures(Graphics::Surface *left, Graphics::Surface *right) {
_graphicsManager->suggestSideTextures(left, right);
}
void ModularBackend::initSize(uint w, uint h, const Graphics::PixelFormat *format ) {
_graphicsManager->initSize(w, h, format);
}