2013-04-18 05:09:55 +02:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2009-08-10 08:18:10 +02:00
|
|
|
#include <string>
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-17 11:18:15 +01:00
|
|
|
#include "Common/Common.h"
|
2014-06-05 17:55:21 +02:00
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
2014-02-17 11:18:15 +01:00
|
|
|
|
2008-12-08 05:46:09 +01:00
|
|
|
namespace VertexLoaderManager
|
|
|
|
{
|
2008-12-25 22:44:56 +01:00
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
2008-12-08 05:46:09 +01:00
|
|
|
|
|
|
|
void MarkAllDirty();
|
|
|
|
|
|
|
|
int GetVertexSize(int vtx_attr_group);
|
2008-12-25 22:44:56 +01:00
|
|
|
void RunVertices(int vtx_attr_group, int primitive, int count);
|
2008-12-08 05:46:09 +01:00
|
|
|
|
|
|
|
// For debugging
|
|
|
|
void AppendListToString(std::string *dest);
|
2014-06-05 17:55:21 +02:00
|
|
|
|
|
|
|
NativeVertexFormat* GetNativeVertexFormat(const PortableVertexDeclaration& format, u32 components);
|
2008-12-08 05:46:09 +01:00
|
|
|
};
|
|
|
|
|
2009-02-09 21:35:30 +01:00
|
|
|
void RecomputeCachedArraybases();
|