dolphin/Source/Core/VideoBackends/Null/VertexManager.h

21 lines
403 B
C
Raw Normal View History

// 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 : public VertexManagerBase
{
public:
VertexManager();
~VertexManager();
protected:
2018-11-27 08:16:53 +01:00
void DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex) override;
};
} // namespace Null