diff options
| author | Shawn Hoffman <godisgovernment@gmail.com> | 2020-09-15 05:24:28 -0700 |
|---|---|---|
| committer | Shawn Hoffman <godisgovernment@gmail.com> | 2021-01-27 14:29:48 -0800 |
| commit | ef70fe05bfae4e47f4acb40756d16de0ef1dd259 (patch) | |
| tree | 45552d6143b97d7658b839e2d8c306b358839aba /Source/Core/VideoBackends/Null/NullVertexManager.cpp | |
| parent | ff4f67492bff68d8b34aebc9ea6c85ca34e02b71 (diff) | |
normalize common filenames in VideoBackends/Null
Diffstat (limited to 'Source/Core/VideoBackends/Null/NullVertexManager.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Null/NullVertexManager.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Source/Core/VideoBackends/Null/NullVertexManager.cpp b/Source/Core/VideoBackends/Null/NullVertexManager.cpp new file mode 100644 index 0000000000..6828a0250e --- /dev/null +++ b/Source/Core/VideoBackends/Null/NullVertexManager.cpp @@ -0,0 +1,17 @@ +// 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; + +void VertexManager::DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex) +{ +} + +} // namespace Null |
