shader changes for world matrices
This commit is contained in:
parent
73bea0ea8c
commit
b871f3a471
2 changed files with 3 additions and 3 deletions
|
@ -5,5 +5,5 @@
|
|||
struct VertexShaderExternalData
|
||||
{
|
||||
DirectX::XMFLOAT4 colorTint;
|
||||
DirectX::XMFLOAT3 offset;
|
||||
DirectX::XMFLOAT4X4 world;
|
||||
};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
cbuffer ExternalData : register(b0)
|
||||
{
|
||||
float4 colorTint;
|
||||
float3 offset;
|
||||
matrix world;
|
||||
}
|
||||
|
||||
// Struct representing a single vertex worth of data
|
||||
|
@ -56,7 +56,7 @@ VertexToPixel main( VertexShaderInput input )
|
|||
// - Each of these components is then automatically divided by the W component,
|
||||
// which we're leaving at 1.0 for now (this is more useful when dealing with
|
||||
// a perspective projection matrix, which we'll get to in the future).
|
||||
output.screenPosition = float4(input.localPosition + offset, 1.0f);
|
||||
output.screenPosition = mul(world, float4(input.localPosition, 1.0f));
|
||||
|
||||
// Pass the color through
|
||||
// - The values will be interpolated per-pixel by the rasterizer
|
||||
|
|
Reference in a new issue