2014-02-03 14:02:17 +01: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 17:19:52 -04:00
|
|
|
class VertexManager final : public VertexManagerBase
|
2014-02-03 14:02:17 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
VertexManager();
|
2019-07-27 17:21:02 -04:00
|
|
|
~VertexManager() override;
|
2017-02-18 03:14:30 -05:00
|
|
|
|
2014-02-03 14:02:17 +01:00
|
|
|
protected:
|
2018-11-27 17:16:53 +10:00
|
|
|
void DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex) override;
|
2014-02-03 14:02:17 +01:00
|
|
|
};
|
2019-02-15 11:59:50 +10:00
|
|
|
} // namespace Null
|