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

31 lines
671 B
C
Raw Normal View History

// Copyright 2009 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <memory>
#include <vector>
2014-12-22 10:25:05 -06:00
#include "Common/CommonTypes.h"
#include "VideoBackends/Software/NativeVertexFormat.h"
#include "VideoBackends/Software/SetupUnit.h"
#include "VideoCommon/VertexManagerBase.h"
class SWVertexLoader final : public VertexManagerBase
{
public:
SWVertexLoader();
~SWVertexLoader();
2018-11-27 17:16:53 +10:00
protected:
void DrawCurrentBatch(u32 base_index, u32 num_indices, u32 base_vertex) override;
void SetFormat();
void ParseVertex(const PortableVertexDeclaration& vdec, int index);
InputVertexData m_vertex{};
SetupUnit m_setup_unit;
};