dolphin/Source/Core/VideoBackends/Null/VertexManager.h
Lioncash 6db305a4e8 VideoBackends/Null: Add missing override specifiers
Applies a missing override specifier to VertexManager's destructor.
2019-07-27 17:33:18 -04:00

20 lines
418 B
C++

// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include "VideoCommon/VertexManagerBase.h"
namespace Null
{
class VertexManager final : public VertexManagerBase
{
public:
VertexManager();
~VertexManager() override;
protected:
void DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex) override;
};
} // namespace Null