2014-07-27 14:58:30 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-07-27 14:58:30 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-08-17 17:44:55 +02:00
|
|
|
#include <functional>
|
|
|
|
#include "video_core/pica.h"
|
2014-07-27 14:58:30 +02:00
|
|
|
|
2014-08-17 17:44:55 +02:00
|
|
|
namespace Pica {
|
2014-07-27 14:58:30 +02:00
|
|
|
|
2014-08-17 17:44:55 +02:00
|
|
|
/*
|
|
|
|
* Utility class to build triangles from a series of vertices,
|
|
|
|
* according to a given triangle topology.
|
|
|
|
*/
|
2016-09-18 02:38:01 +02:00
|
|
|
template <typename VertexType>
|
2014-08-17 17:44:55 +02:00
|
|
|
struct PrimitiveAssembler {
|
2016-09-18 02:38:01 +02:00
|
|
|
using TriangleHandler = std::function<void(VertexType& v0, VertexType& v1, VertexType& v2)>;
|
2014-08-17 17:44:55 +02:00
|
|
|
|
2016-03-05 23:49:23 +01:00
|
|
|
PrimitiveAssembler(Regs::TriangleTopology topology = Regs::TriangleTopology::List);
|
2014-08-17 17:44:55 +02: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.
|
|
|
|
*/
|
|
|
|
void SubmitVertex(VertexType& vtx, TriangleHandler triangle_handler);
|
|
|
|
|
2016-03-03 04:16:38 +01:00
|
|
|
/**
|
|
|
|
* Resets the internal state of the PrimitiveAssembler.
|
|
|
|
*/
|
|
|
|
void Reset();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reconfigures the PrimitiveAssembler to use a different triangle topology.
|
|
|
|
*/
|
|
|
|
void Reconfigure(Regs::TriangleTopology topology);
|
|
|
|
|
2014-08-17 17:44:55 +02:00
|
|
|
private:
|
|
|
|
Regs::TriangleTopology topology;
|
|
|
|
|
|
|
|
int buffer_index;
|
|
|
|
VertexType buffer[2];
|
2014-12-07 00:26:48 +01:00
|
|
|
bool strip_ready = false;
|
2014-08-17 17:44:55 +02:00
|
|
|
};
|
2014-07-27 14:58:30 +02:00
|
|
|
|
|
|
|
} // namespace
|