Add: [OpenGL] Support for 8bpp blitters.

This commit is contained in:
Michael Lutz
2021-01-16 16:43:25 +01:00
parent 320072c8dc
commit e8fc050b6e
7 changed files with 159 additions and 18 deletions

View File

@@ -98,6 +98,15 @@ public:
return true;
}
/**
* Has this video driver an efficient code path for palette animated 8-bpp sprites?
* @return True if the driver has an efficient code path for 8-bpp.
*/
virtual bool HasEfficient8Bpp() const
{
return false;
}
/**
* An edit box lost the input focus. Abort character compositing if necessary.
*/