2016-04-28 19:01:47 +02:00
|
|
|
#pragma once
|
|
|
|
|
2016-04-28 19:40:11 +02:00
|
|
|
#include <iterator>
|
|
|
|
#include <algorithm>
|
|
|
|
|
2016-04-28 19:01:47 +02:00
|
|
|
#include "video_core/pica.h"
|
|
|
|
#include "video_core/shader/shader.h"
|
2016-04-29 08:50:21 +02:00
|
|
|
#include "video_core/debug_utils/debug_utils.h"
|
2016-04-28 19:01:47 +02:00
|
|
|
|
|
|
|
namespace Pica {
|
|
|
|
|
|
|
|
class VertexLoader {
|
|
|
|
public:
|
2016-04-28 19:40:11 +02:00
|
|
|
void Setup(const Pica::Regs& regs);
|
2016-04-29 08:50:21 +02:00
|
|
|
void LoadVertex(u32 base_address, int index, int vertex, Shader::InputVertex& input, DebugUtils::MemoryAccessTracker& memory_accesses);
|
2016-04-28 19:01:47 +02:00
|
|
|
|
|
|
|
int GetNumTotalAttributes() const { return num_total_attributes; }
|
2016-04-28 20:17:35 +02:00
|
|
|
|
2016-04-28 19:01:47 +02:00
|
|
|
private:
|
|
|
|
u32 vertex_attribute_sources[16];
|
|
|
|
u32 vertex_attribute_strides[16] = {};
|
|
|
|
Regs::VertexAttributeFormat vertex_attribute_formats[16] = {};
|
|
|
|
u32 vertex_attribute_elements[16] = {};
|
|
|
|
bool vertex_attribute_is_default[16];
|
|
|
|
int num_total_attributes;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Pica
|