mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Initial megacommit.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
51
Source/Plugins/Plugin_VideoDX9/Src/VertexHandler.h
Normal file
51
Source/Plugins/Plugin_VideoDX9/Src/VertexHandler.h
Normal file
@ -0,0 +1,51 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "CPStructs.h"
|
||||
#include "VertexLoader.h"
|
||||
#include "DecodedVArray.h"
|
||||
|
||||
extern float shiftLookup[32];
|
||||
|
||||
struct UV
|
||||
{
|
||||
float u,v,w;
|
||||
};
|
||||
|
||||
struct D3DVertex {
|
||||
Vec3 pos;
|
||||
Vec3 normal;
|
||||
u32 colors[2];
|
||||
UV uv[8];
|
||||
};
|
||||
|
||||
enum Collection
|
||||
{
|
||||
C_NOTHING=0,
|
||||
C_TRIANGLES=1,
|
||||
C_LINES=2,
|
||||
C_POINTS=3
|
||||
};
|
||||
extern const Collection collectionTypeLUT[8];
|
||||
|
||||
class CVertexHandler
|
||||
{
|
||||
private:
|
||||
static Collection collection;
|
||||
// Pipeline
|
||||
|
||||
static void PrepareRender();
|
||||
static void AddIndices(int _primitive, int _numVertices);
|
||||
|
||||
public:
|
||||
static void Init();
|
||||
static void Shutdown();
|
||||
|
||||
static void BeginFrame();
|
||||
|
||||
static void CreateDeviceObjects();
|
||||
static void DestroyDeviceObjects();
|
||||
|
||||
static void DrawVertices(int _primitive, int _numVertices, const DecodedVArray *varray);
|
||||
static void Flush();
|
||||
};
|
Reference in New Issue
Block a user