2014-07-27 16:58:30 +04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 08:38:14 +03:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-07-27 16:58:30 +04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-08-17 19:44:55 +04:00
|
|
|
#include <functional>
|
2017-01-28 23:34:31 +03:00
|
|
|
#include "video_core/regs_pipeline.h"
|
2014-07-27 16:58:30 +04:00
|
|
|
|
2014-08-17 19:44:55 +04:00
|
|
|
namespace Pica {
|
2014-07-27 16:58:30 +04:00
|
|
|
|
2014-08-17 19:44:55 +04:00
|
|
|
/*
|
|
|
|
* Utility class to build triangles from a series of vertices,
|
|
|
|
* according to a given triangle topology.
|
|
|
|
*/
|
2016-09-18 03:38:01 +03:00
|
|
|
template <typename VertexType>
|
2014-08-17 19:44:55 +04:00
|
|
|
struct PrimitiveAssembler {
|
2017-01-28 05:10:54 +03:00
|
|
|
using TriangleHandler =
|
|
|
|
std::function<void(const VertexType& v0, const VertexType& v1, const VertexType& v2)>;
|
2014-08-17 19:44:55 +04:00
|
|
|
|
2017-01-28 23:34:31 +03:00
|
|
|
PrimitiveAssembler(
|
|
|
|
PipelineRegs::TriangleTopology topology = PipelineRegs::TriangleTopology::List);
|
2014-08-17 19:44:55 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Queues a vertex, builds primitives from the vertex queue according to the given
|
|
|
|
* triangle topology, and calls triangle_handler for each generated primitive.
|
|
|
|
* NOTE: We could specify the triangle handler in the constructor, but this way we can
|
|
|
|
* keep event and handler code next to each other.
|
|
|
|
*/
|
2017-01-28 05:10:54 +03:00
|
|
|
void SubmitVertex(const VertexType& vtx, TriangleHandler triangle_handler);
|
2014-08-17 19:44:55 +04:00
|
|
|
|
2016-03-03 06:16:38 +03:00
|
|
|
/**
|
|
|
|
* Resets the internal state of the PrimitiveAssembler.
|
|
|
|
*/
|
|
|
|
void Reset();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reconfigures the PrimitiveAssembler to use a different triangle topology.
|
|
|
|
*/
|
2017-01-28 23:34:31 +03:00
|
|
|
void Reconfigure(PipelineRegs::TriangleTopology topology);
|
2016-03-03 06:16:38 +03:00
|
|
|
|
2014-08-17 19:44:55 +04:00
|
|
|
private:
|
2017-01-28 23:34:31 +03:00
|
|
|
PipelineRegs::TriangleTopology topology;
|
2014-08-17 19:44:55 +04:00
|
|
|
|
|
|
|
int buffer_index;
|
|
|
|
VertexType buffer[2];
|
2014-12-07 02:26:48 +03:00
|
|
|
bool strip_ready = false;
|
2014-08-17 19:44:55 +04:00
|
|
|
};
|
2014-07-27 16:58:30 +04:00
|
|
|
|
|
|
|
} // namespace
|