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
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-08-10 06:18:10 +00:00
|
|
|
#include <string>
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-11-27 22:53:11 +00:00
|
|
|
#include "VideoCommon/DataReader.h"
|
2014-06-05 15:55:21 +00:00
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
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();
|
|
|
|
|
2014-12-09 07:35:04 +00:00
|
|
|
// Returns -1 if buf_size is insufficient, else the amount of bytes consumed
|
2015-01-31 08:23:50 +00:00
|
|
|
int RunVertices(int vtx_attr_group, int primitive, int count, DataReader src, bool skip_drawing, bool is_preprocess);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// For debugging
|
|
|
|
void AppendListToString(std::string *dest);
|
2014-06-05 15:55:21 +00:00
|
|
|
|
2014-07-25 23:10:44 +00:00
|
|
|
NativeVertexFormat* GetCurrentVertexFormat();
|
2014-09-11 17:00:40 +00:00
|
|
|
}
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-02-09 20:35:30 +00:00
|
|
|
void RecomputeCachedArraybases();
|