Codechange: remove the unused lock around Blitter

This commit is contained in:
Patric Stout
2021-02-27 12:11:58 +01:00
committed by Patric Stout
parent 4610aa7ae3
commit b9eac7c6dc
3 changed files with 0 additions and 20 deletions

View File

@@ -62,7 +62,6 @@ public:
/**
* Callback invoked after the blitter was changed.
* This may only be called between AcquireBlitterLock and ReleaseBlitterLock.
* @return True if no error.
*/
virtual bool AfterBlitterChange()
@@ -70,18 +69,6 @@ public:
return true;
}
/**
* Acquire any lock(s) required to be held when changing blitters.
* These lock(s) may not be acquired recursively.
*/
virtual void AcquireBlitterLock() { }
/**
* Release any lock(s) required to be held when changing blitters.
* These lock(s) may not be acquired recursively.
*/
virtual void ReleaseBlitterLock() { }
virtual bool ClaimMousePointer()
{
return true;