DMAEngine: Accelerate BufferClear

This commit is contained in:
Fernando Sahmkow 2021-07-13 03:33:08 +02:00
parent 3585cd875e
commit a0a9ff69fa
11 changed files with 115 additions and 6 deletions

View file

@ -31,6 +31,8 @@ class AccelerateDMAInterface {
public:
/// Write the value to the register identified by method.
virtual bool BufferCopy(GPUVAddr src_address, GPUVAddr dest_address, u64 amount) = 0;
virtual bool BufferClear(GPUVAddr src_address, u64 amount, u32 value) = 0;
};
/**