mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
normalize common filenames in VideoBackends/Null
This commit is contained in:
20
Source/Core/VideoBackends/Null/NullVertexManager.h
Normal file
20
Source/Core/VideoBackends/Null/NullVertexManager.h
Normal 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
|
Reference in New Issue
Block a user