mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 02:28:51 +00:00
Initial megacommit.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
a3be5d89ae
commit
775dc8a9c0
1920 changed files with 734652 additions and 0 deletions
39
Source/Plugins/Plugin_VideoDX9/Src/TransformEngine.h
Normal file
39
Source/Plugins/Plugin_VideoDX9/Src/TransformEngine.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
#ifndef _TRANSFORMENGINE_H
|
||||
#define _TRANSFORMENGINE_H
|
||||
|
||||
//T&L Engine
|
||||
//as much work as possible will be delegated to vertex shaders later
|
||||
//to take full advantage of current PC HW
|
||||
|
||||
#include "VertexHandler.h"
|
||||
#include "DecodedVArray.h"
|
||||
|
||||
class CTransformEngine
|
||||
{
|
||||
static float* m_pPosMatrix;
|
||||
static float* m_pNormalMatrix;
|
||||
static float* m_pTexMatrix[8];
|
||||
static float* m_pTexPostMatrix[8];
|
||||
|
||||
public:
|
||||
static size_t SaveLoadState(char *ptr, bool save);
|
||||
static void TransformVertices(int _numVertices,
|
||||
const DecodedVArray *varray,
|
||||
D3DVertex *vbuffer);
|
||||
|
||||
static void SetPosNormalMatrix(float *p, float *n)
|
||||
{
|
||||
m_pPosMatrix = p;
|
||||
m_pNormalMatrix = n;
|
||||
}
|
||||
static void SetTexMatrix(int i, float *f)
|
||||
{
|
||||
m_pTexMatrix[i] = f;
|
||||
}
|
||||
static void SetTexPostMatrix(int i, float *f)
|
||||
{
|
||||
m_pTexPostMatrix[i] = f;
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue