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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
380 B
C++
Raw Normal View History

// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include "VideoBackends/Null/NullVertexManager.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