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

18 lines
376 B
C++
Raw Normal View History

// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include "VideoBackends/Null/VertexManager.h"
namespace Null
{
VertexManager::VertexManager() = default;
VertexManager::~VertexManager() = default;
2018-11-27 07:16:53 +00:00
void VertexManager::DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex)
{
}
2018-11-27 07:16:53 +00:00
} // namespace Null