mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:07:36 +00:00
Piano: Remove declarations for non-existent methods
This commit is contained in:
parent
3cbc0fdbb0
commit
5967310d0b
3 changed files with 0 additions and 6 deletions
|
@ -26,8 +26,6 @@ class AudioPlayerLoop final : public Core::Object {
|
||||||
public:
|
public:
|
||||||
virtual ~AudioPlayerLoop() override;
|
virtual ~AudioPlayerLoop() override;
|
||||||
|
|
||||||
void enqueue_audio();
|
|
||||||
|
|
||||||
void toggle_paused();
|
void toggle_paused();
|
||||||
bool is_playing() const { return m_should_play_audio; }
|
bool is_playing() const { return m_should_play_audio; }
|
||||||
|
|
||||||
|
|
|
@ -27,8 +27,5 @@ protected:
|
||||||
DSP::ProcessorRangeParameter& m_parameter;
|
DSP::ProcessorRangeParameter& m_parameter;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Converts based on processor parameter boundaries.
|
|
||||||
int linear_to_logarithmic(int linear_value);
|
|
||||||
|
|
||||||
bool m_currently_setting_from_ui { false };
|
bool m_currently_setting_from_ui { false };
|
||||||
};
|
};
|
||||||
|
|
|
@ -41,7 +41,6 @@ public:
|
||||||
|
|
||||||
void fill_buffer(FixedArray<DSP::Sample>&);
|
void fill_buffer(FixedArray<DSP::Sample>&);
|
||||||
void reset();
|
void reset();
|
||||||
void set_keyboard_note(int note, DSP::Keyboard::Switch note_switch);
|
|
||||||
void set_should_loop(bool b) { m_should_loop = b; }
|
void set_should_loop(bool b) { m_should_loop = b; }
|
||||||
void add_track();
|
void add_track();
|
||||||
int next_track_index() const;
|
int next_track_index() const;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue