2013-04-17 21:09:55 -06:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2009-08-10 00:18:10 -06:00
|
|
|
#include <string>
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-09-07 19:06:58 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-11-27 15:53:11 -07:00
|
|
|
#include "VideoCommon/DataReader.h"
|
2014-06-05 09:55:21 -06:00
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
namespace VertexLoaderManager
|
|
|
|
{
|
2008-12-25 14:44:56 -07:00
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
void MarkAllDirty();
|
|
|
|
|
2014-08-27 11:38:00 -06:00
|
|
|
int GetVertexSize(int vtx_attr_group, bool preprocess);
|
2014-12-09 00:35:04 -07:00
|
|
|
|
|
|
|
// Returns -1 if buf_size is insufficient, else the amount of bytes consumed
|
|
|
|
int RunVertices(int vtx_attr_group, int primitive, int count, DataReader src, bool skip_drawing = false);
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
// For debugging
|
|
|
|
void AppendListToString(std::string *dest);
|
2014-06-05 09:55:21 -06:00
|
|
|
|
2014-07-25 17:10:44 -06:00
|
|
|
NativeVertexFormat* GetCurrentVertexFormat();
|
2014-09-11 11:00:40 -06:00
|
|
|
}
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2009-02-09 13:35:30 -07:00
|
|
|
void RecomputeCachedArraybases();
|