Danbias/Code/OysterGraphics/Shader/HLSL/SimpleDebug/DebugCameraVertex.hlsl

24 lines
371 B
HLSL
Raw Normal View History

cbuffer PerFrame : register(b0)
{
matrix View;
float4x4 Projection;
}
cbuffer PerModel : register(b1)
{
matrix World;
}
2013-11-21 13:50:43 +01:00
struct VertexIn
{
float3 pos : POSITION;
float2 UV : TEXCOORD;
float3 normal : NORMAL;
};
2013-11-21 13:50:43 +01:00
float4 main( VertexIn input ) : SV_POSITION
{
matrix VP = mul(View, Projection);
matrix WVP = mul(World, VP);
2013-11-21 13:50:43 +01:00
return mul(WVP, float4(input.pos,1));
}