2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-10-03 08:20:24 +00:00
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
#include <memory>
|
2013-02-27 04:47:50 +00:00
|
|
|
#include <vector>
|
2015-12-21 02:49:49 +00:00
|
|
|
|
2014-10-21 06:01:38 +00:00
|
|
|
#include "Common/CommonFuncs.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2013-02-27 04:47:50 +00:00
|
|
|
|
2016-01-31 19:51:55 +00:00
|
|
|
class DataReader;
|
2010-11-26 09:25:08 +00:00
|
|
|
class NativeVertexFormat;
|
2012-01-04 08:42:22 +00:00
|
|
|
class PointerWrap;
|
2016-01-17 21:54:31 +00:00
|
|
|
struct PortableVertexDeclaration;
|
2010-11-26 09:25:08 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
enum PrimitiveType
|
|
|
|
{
|
|
|
|
PRIMITIVE_POINTS,
|
|
|
|
PRIMITIVE_LINES,
|
|
|
|
PRIMITIVE_TRIANGLES,
|
2014-01-15 20:44:46 +00:00
|
|
|
};
|
|
|
|
|
2015-01-13 09:55:25 +00:00
|
|
|
struct Slope
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
float dfdx;
|
|
|
|
float dfdy;
|
|
|
|
float f0;
|
|
|
|
bool dirty;
|
2015-01-13 09:55:25 +00:00
|
|
|
};
|
|
|
|
|
2015-11-01 21:54:41 +00:00
|
|
|
class VertexManagerBase
|
2010-10-03 08:20:24 +00:00
|
|
|
{
|
2013-02-22 05:12:53 +00:00
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
static const u32 SMALLEST_POSSIBLE_VERTEX = sizeof(float) * 3; // 3 pos
|
|
|
|
static const u32 LARGEST_POSSIBLE_VERTEX =
|
|
|
|
sizeof(float) * 45 + sizeof(u32) * 2; // 3 pos, 3*3 normal, 2*u32 color, 8*4 tex, 1 posMat
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static const u32 MAX_PRIMITIVES_PER_COMMAND = (u16)-1;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2010-10-03 08:20:24 +00:00
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
static const u32 MAXVBUFFERSIZE =
|
|
|
|
ROUND_UP_POW2(MAX_PRIMITIVES_PER_COMMAND * LARGEST_POSSIBLE_VERTEX);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// We may convert triangle-fans to triangle-lists, almost 3x as many indices.
|
|
|
|
static const u32 MAXIBUFFERSIZE = ROUND_UP_POW2(MAX_PRIMITIVES_PER_COMMAND * 3);
|
2010-10-03 08:20:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
VertexManagerBase();
|
|
|
|
// needs to be virtual for DX11's dtor
|
|
|
|
virtual ~VertexManagerBase();
|
2010-10-03 08:20:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static DataReader PrepareForAdditionalData(int primitive, u32 count, u32 stride, bool cullall);
|
|
|
|
static void FlushData(u32 count, u32 stride);
|
2010-10-03 08:20:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static void Flush();
|
2010-10-03 08:20:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual NativeVertexFormat*
|
|
|
|
CreateNativeVertexFormat(const PortableVertexDeclaration& vtx_decl) = 0;
|
2010-11-26 09:25:08 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static void DoState(PointerWrap& p);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2010-10-03 08:20:24 +00:00
|
|
|
protected:
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual void vDoState(PointerWrap& p) {}
|
|
|
|
static PrimitiveType current_primitive_type;
|
2014-01-15 20:44:46 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual void ResetBuffer(u32 stride) = 0;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static u8* s_pCurBufferPointer;
|
|
|
|
static u8* s_pBaseBufferPointer;
|
|
|
|
static u8* s_pEndBufferPointer;
|
2014-12-09 07:35:04 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static u32 GetRemainingSize();
|
|
|
|
static u32 GetRemainingIndices(int primitive);
|
2014-12-09 07:35:04 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static Slope s_zslope;
|
|
|
|
static void CalculateZSlope(NativeVertexFormat* format);
|
2015-01-13 09:55:25 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static bool s_cull_all;
|
2015-01-24 01:37:20 +00:00
|
|
|
|
2014-01-23 12:11:38 +00:00
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
static bool s_is_flushed;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual void vFlush(bool useDstAlpha) = 0;
|
2014-12-09 07:35:04 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual void CreateDeviceObjects() {}
|
|
|
|
virtual void DestroyDeviceObjects() {}
|
2010-10-03 08:20:24 +00:00
|
|
|
};
|
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
extern std::unique_ptr<VertexManagerBase> g_vertex_manager;
|