mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 01:49:33 -06:00
Merge pull request #10766 from xperia64/dsp_format_fun
DSP accelerator improvements
This commit is contained in:
@ -17,13 +17,15 @@ public:
|
||||
{
|
||||
std::array<s16, 16> coefs{};
|
||||
m_accov_raised = false;
|
||||
return Read(coefs.data());
|
||||
return ReadSample(coefs.data());
|
||||
}
|
||||
|
||||
bool EndExceptionRaised() const { return m_accov_raised; }
|
||||
|
||||
protected:
|
||||
void OnEndException() override
|
||||
void OnRawReadEndException() override {}
|
||||
void OnRawWriteEndException() override {}
|
||||
void OnSampleReadEndException() override
|
||||
{
|
||||
EXPECT_TRUE(m_reads_stopped);
|
||||
m_accov_raised = true;
|
||||
|
Reference in New Issue
Block a user