mirror of
https://github.com/AxioDL/boo.git
synced 2025-06-05 22:23:37 +00:00
Fix missed override declarations
This commit is contained in:
parent
d4cd2b4dce
commit
1822b555fa
@ -270,7 +270,7 @@ struct PulseAudioVoiceEngine : LinuxMidi {
|
|||||||
if (i)
|
if (i)
|
||||||
userdata->m_sinks.push_back(std::make_pair(i->name, i->description));
|
userdata->m_sinks.push_back(std::make_pair(i->name, i->description));
|
||||||
}
|
}
|
||||||
std::vector<std::pair<std::string, std::string>> enumerateAudioOutputs() const {
|
std::vector<std::pair<std::string, std::string>> enumerateAudioOutputs() const override {
|
||||||
pa_operation* op = pa_context_get_sink_info_list(m_ctx, pa_sink_info_cb_t(_getSinkInfoListReply), (void*)this);
|
pa_operation* op = pa_context_get_sink_info_list(m_ctx, pa_sink_info_cb_t(_getSinkInfoListReply), (void*)this);
|
||||||
_paIterate(op);
|
_paIterate(op);
|
||||||
pa_operation_unref(op);
|
pa_operation_unref(op);
|
||||||
|
@ -510,7 +510,7 @@ public:
|
|||||||
visualIdOut = screen->root_visual->visualid;
|
visualIdOut = screen->root_visual->visualid;
|
||||||
}
|
}
|
||||||
|
|
||||||
void destroy() {
|
void destroy() override {
|
||||||
VulkanContext::Window& m_windowCtx = *m_ctx->m_windows[m_parentWindow];
|
VulkanContext::Window& m_windowCtx = *m_ctx->m_windows[m_parentWindow];
|
||||||
m_windowCtx.m_swapChains[0].destroy(m_ctx->m_dev);
|
m_windowCtx.m_swapChains[0].destroy(m_ctx->m_dev);
|
||||||
m_windowCtx.m_swapChains[1].destroy(m_ctx->m_dev);
|
m_windowCtx.m_swapChains[1].destroy(m_ctx->m_dev);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user