2014-02-03 13:02:17 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2020-09-15 12:24:28 +00:00
|
|
|
#include "VideoBackends/Null/NullVertexManager.h"
|
2014-02-03 13:02:17 +00:00
|
|
|
|
|
|
|
namespace Null
|
|
|
|
{
|
2019-02-15 01:59:50 +00:00
|
|
|
VertexManager::VertexManager() = default;
|
2014-02-03 13:02:17 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
VertexManager::~VertexManager() = default;
|
2018-11-27 07:16:53 +00:00
|
|
|
|
|
|
|
void VertexManager::DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex)
|
2014-02-03 13:02:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-11-27 07:16:53 +00:00
|
|
|
} // namespace Null
|