mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
normalize common filenames in VideoBackends/Null
This commit is contained in:
parent
ff4f67492b
commit
ef70fe05bf
7 changed files with 12 additions and 12 deletions
17
Source/Core/VideoBackends/Null/NullVertexManager.cpp
Normal file
17
Source/Core/VideoBackends/Null/NullVertexManager.cpp
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue