2013-11-21 13:50:43 +01:00
|
|
|
#include "..\OysterGraphics\Core\CoreIncludes.h"
|
|
|
|
#include "OysterMath.h"
|
|
|
|
|
|
|
|
namespace Oyster
|
|
|
|
{
|
|
|
|
namespace Graphics
|
|
|
|
{
|
|
|
|
namespace Definitions
|
|
|
|
{
|
|
|
|
struct ObjVertex
|
|
|
|
{
|
|
|
|
Oyster::Math::Float3 pos;
|
|
|
|
Oyster::Math::Float2 uv;
|
|
|
|
Oyster::Math::Float3 normal;
|
|
|
|
};
|
2013-11-21 18:31:16 +01:00
|
|
|
|
|
|
|
struct VP
|
|
|
|
{
|
|
|
|
Oyster::Math::Matrix V;
|
|
|
|
Oyster::Math::Matrix P;
|
|
|
|
};
|
2013-11-21 13:50:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|