2014-02-03 13:02:17 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "VideoCommon/VertexManagerBase.h"
|
|
|
|
|
|
|
|
namespace Null
|
|
|
|
{
|
2019-07-27 21:19:52 +00:00
|
|
|
class VertexManager final : public VertexManagerBase
|
2014-02-03 13:02:17 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
VertexManager();
|
2019-07-27 21:21:02 +00:00
|
|
|
~VertexManager() override;
|
2017-02-18 08:14:30 +00:00
|
|
|
|
2014-02-03 13:02:17 +00:00
|
|
|
protected:
|
2018-11-27 07:16:53 +00:00
|
|
|
void DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex) override;
|
2014-02-03 13:02:17 +00:00
|
|
|
};
|
2019-02-15 01:59:50 +00:00
|
|
|
} // namespace Null
|