1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

LibAudio: Explicitly ignore IPC postprocessing requests

We don't need to do any IPC postprocessing in LibAudio (yet.)
This is the mechanism used by LibGUI to do repaint coalescing etc.
This commit is contained in:
Andreas Kling 2019-08-02 19:56:41 +02:00
parent 7c7343de98
commit 33b0c4cfaf

View file

@ -13,6 +13,8 @@ public:
virtual void handshake() override; virtual void handshake() override;
void enqueue(const ABuffer&); void enqueue(const ABuffer&);
virtual void postprocess_bundles(Vector<IncomingMessageBundle>&) override {}
int get_main_mix_volume(); int get_main_mix_volume();
void set_main_mix_volume(int); void set_main_mix_volume(int);
}; };