2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#ifndef _VERTEXLOADERMANAGER_H
|
|
|
|
#define _VERTEXLOADERMANAGER_H
|
|
|
|
|
|
|
|
#include "Common.h"
|
2009-08-10 06:18:10 +00:00
|
|
|
#include <string>
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
namespace VertexLoaderManager
|
|
|
|
{
|
2008-12-25 21:44:56 +00:00
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
void MarkAllDirty();
|
|
|
|
|
|
|
|
int GetVertexSize(int vtx_attr_group);
|
2008-12-25 21:44:56 +00:00
|
|
|
void RunVertices(int vtx_attr_group, int primitive, int count);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// For debugging
|
|
|
|
void AppendListToString(std::string *dest);
|
|
|
|
};
|
|
|
|
|
2009-02-09 20:35:30 +00:00
|
|
|
void RecomputeCachedArraybases();
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
#endif // _VERTEXLOADERMANAGER_H
|