diff --git a/Source/Core/VideoBackends/Software/SWVertexLoader.h b/Source/Core/VideoBackends/Software/SWVertexLoader.h index e7781d277e..f6b813100f 100644 --- a/Source/Core/VideoBackends/Software/SWVertexLoader.h +++ b/Source/Core/VideoBackends/Software/SWVertexLoader.h @@ -23,22 +23,18 @@ public: std::unique_ptr CreateNativeVertexFormat(const PortableVertexDeclaration& vdec) override; -protected: - void ResetBuffer(u32 stride) override; - private: + void ResetBuffer(u32 stride) override; void vFlush() override; + + void SetFormat(u8 attributeIndex, u8 primitiveType); + void ParseVertex(const PortableVertexDeclaration& vdec, int index); + std::vector m_local_vertex_buffer; std::vector m_local_index_buffer; InputVertexData m_vertex; - - void ParseVertex(const PortableVertexDeclaration& vdec, int index); - SetupUnit m_setup_unit; bool m_tex_gen_special_case; - -public: - void SetFormat(u8 attributeIndex, u8 primitiveType); };