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