Removed parameter names from empty virtual functions (fixes compiler warnings, refs #103)
This commit is contained in:
parent
bbbb06045e
commit
39824db3e6
3 changed files with 10 additions and 23 deletions
|
|
@ -545,10 +545,7 @@ void VulkanExampleBase::updateTextOverlay()
|
|||
textOverlay->endTextUpdate();
|
||||
}
|
||||
|
||||
void VulkanExampleBase::getOverlayText(VulkanTextOverlay *textOverlay)
|
||||
{
|
||||
// Can be overriden in derived class
|
||||
}
|
||||
void VulkanExampleBase::getOverlayText(VulkanTextOverlay*) {}
|
||||
|
||||
void VulkanExampleBase::prepareFrame()
|
||||
{
|
||||
|
|
@ -1864,20 +1861,11 @@ void VulkanExampleBase::handleEvent(const xcb_generic_event_t *event)
|
|||
}
|
||||
#endif
|
||||
|
||||
void VulkanExampleBase::viewChanged()
|
||||
{
|
||||
// Can be overrdiden in derived class
|
||||
}
|
||||
void VulkanExampleBase::viewChanged() {}
|
||||
|
||||
void VulkanExampleBase::keyPressed(uint32_t keyCode)
|
||||
{
|
||||
// Can be overriden in derived class
|
||||
}
|
||||
void VulkanExampleBase::keyPressed(uint32_t) {}
|
||||
|
||||
void VulkanExampleBase::buildCommandBuffers()
|
||||
{
|
||||
// Can be overriden in derived class
|
||||
}
|
||||
void VulkanExampleBase::buildCommandBuffers() {}
|
||||
|
||||
void VulkanExampleBase::createCommandPool()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue