video_core: Add missing override specifiers
Ensures that the signatures will always match with the base class. Also silences a few compilation warnings.
This commit is contained in:
parent
47f2405ab1
commit
bbe700359d
3 changed files with 4 additions and 4 deletions
|
@ -21,7 +21,7 @@ public:
|
|||
CommandBufferPool(const VKDevice& device)
|
||||
: VKFencedPool(COMMAND_BUFFER_POOL_SIZE), device{device} {}
|
||||
|
||||
void Allocate(std::size_t begin, std::size_t end) {
|
||||
void Allocate(std::size_t begin, std::size_t end) override {
|
||||
const auto dev = device.GetLogical();
|
||||
const auto& dld = device.GetDispatchLoader();
|
||||
const u32 graphics_family = device.GetGraphicsFamily();
|
||||
|
|
|
@ -97,7 +97,7 @@ private:
|
|||
class VKFenceWatch final : public VKResource {
|
||||
public:
|
||||
explicit VKFenceWatch();
|
||||
~VKFenceWatch();
|
||||
~VKFenceWatch() override;
|
||||
|
||||
/// Waits for the fence to be released.
|
||||
void Wait();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue