summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null/VertexManager.h
blob: 9e31b304164ef34550ce55b30f7f62c05abc88c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include <vector>

#include "VideoCommon/VertexManagerBase.h"

namespace Null
{
class VertexManager : public VertexManagerBase
{
public:
  VertexManager();
  ~VertexManager();
  NativeVertexFormat* CreateNativeVertexFormat(const PortableVertexDeclaration& vtx_decl) override;

protected:
  void ResetBuffer(u32 stride) override;

private:
  void vFlush(bool use_dst_alpha) override;
  std::vector<u8> m_local_v_buffer;
  std::vector<u16> m_local_i_buffer;
};
}