normalize common filenames in VideoBackends/Null

This commit is contained in:
Shawn Hoffman
2020-09-15 05:24:28 -07:00
parent ff4f67492b
commit ef70fe05bf
7 changed files with 12 additions and 12 deletions

View File

@ -0,0 +1,20 @@
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include "VideoCommon/VertexManagerBase.h"
namespace Null
{
class VertexManager final : public VertexManagerBase
{
public:
VertexManager();
~VertexManager() override;
protected:
void DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex) override;
};
} // namespace Null