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

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

20 lines
395 B
C
Raw Normal View History

// Copyright 2015 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "VideoCommon/VertexManagerBase.h"
namespace Null
{
class VertexManager final : public VertexManagerBase
{
public:
VertexManager();
~VertexManager() override;
protected:
2018-11-27 07:16:53 +00:00
void DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex) override;
};
} // namespace Null