2016-04-28 12:01:47 -05:00
|
|
|
#pragma once
|
|
|
|
|
2016-04-29 10:06:03 -05:00
|
|
|
#include <array>
|
|
|
|
#include "common/common_types.h"
|
2017-01-28 15:27:24 -06:00
|
|
|
#include "video_core/regs_pipeline.h"
|
2016-04-28 12:01:47 -05:00
|
|
|
|
|
|
|
namespace Pica {
|
|
|
|
|
2016-04-30 10:34:51 -05:00
|
|
|
namespace DebugUtils {
|
|
|
|
class MemoryAccessTracker;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Shader {
|
2016-12-18 18:42:19 -06:00
|
|
|
struct AttributeBuffer;
|
2016-04-30 10:34:51 -05:00
|
|
|
}
|
|
|
|
|
2016-04-28 12:01:47 -05:00
|
|
|
class VertexLoader {
|
|
|
|
public:
|
2016-04-29 10:23:40 -05:00
|
|
|
VertexLoader() = default;
|
2017-01-28 14:34:31 -06:00
|
|
|
explicit VertexLoader(const PipelineRegs& regs) {
|
2016-04-29 10:23:40 -05:00
|
|
|
Setup(regs);
|
|
|
|
}
|
|
|
|
|
2017-01-28 14:34:31 -06:00
|
|
|
void Setup(const PipelineRegs& regs);
|
2016-12-18 18:42:19 -06:00
|
|
|
void LoadVertex(u32 base_address, int index, int vertex, Shader::AttributeBuffer& input,
|
2016-09-17 19:38:01 -05:00
|
|
|
DebugUtils::MemoryAccessTracker& memory_accesses);
|
2016-04-28 12:01:47 -05:00
|
|
|
|
2016-09-17 19:38:01 -05:00
|
|
|
int GetNumTotalAttributes() const {
|
|
|
|
return num_total_attributes;
|
|
|
|
}
|
2016-04-28 13:17:35 -05:00
|
|
|
|
2016-04-28 12:01:47 -05:00
|
|
|
private:
|
2016-04-29 10:06:03 -05:00
|
|
|
std::array<u32, 16> vertex_attribute_sources;
|
|
|
|
std::array<u32, 16> vertex_attribute_strides{};
|
2017-01-28 14:34:31 -06:00
|
|
|
std::array<PipelineRegs::VertexAttributeFormat, 16> vertex_attribute_formats;
|
2016-04-29 10:06:03 -05:00
|
|
|
std::array<u32, 16> vertex_attribute_elements{};
|
|
|
|
std::array<bool, 16> vertex_attribute_is_default;
|
2016-04-29 10:16:52 -05:00
|
|
|
int num_total_attributes = 0;
|
2016-04-29 10:27:15 -05:00
|
|
|
bool is_setup = false;
|
2016-04-28 12:01:47 -05:00
|
|
|
};
|
|
|
|
|
2016-09-17 19:38:01 -05:00
|
|
|
} // namespace Pica
|