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