BACKENDS: Make suggestSideTextures go through GraphicsManager
This commit is contained in:
parent
911e0e3915
commit
287f97228f
9 changed files with 12 additions and 14 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue