From 423edaed90a0aacccb23fb9595df564b59f596ea Mon Sep 17 00:00:00 2001 From: Chris Cascioli Date: Tue, 24 Aug 2021 12:25:52 -0400 Subject: [PATCH] Updated names of position-related variables in shaders --- PixelShader.hlsl | 4 ++-- Vertex.h | 2 +- VertexShader.hlsl | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/PixelShader.hlsl b/PixelShader.hlsl index 88e9657..b0a1025 100644 --- a/PixelShader.hlsl +++ b/PixelShader.hlsl @@ -11,8 +11,8 @@ struct VertexToPixel // | Name Semantic // | | | // v v v - float4 position : SV_POSITION; - float4 color : COLOR; + float4 screenPosition : SV_POSITION; + float4 color : COLOR; }; // -------------------------------------------------------- diff --git a/Vertex.h b/Vertex.h index d48e03b..4f06bc0 100644 --- a/Vertex.h +++ b/Vertex.h @@ -9,6 +9,6 @@ // -------------------------------------------------------- struct Vertex { - DirectX::XMFLOAT3 Position; // The position of the vertex + DirectX::XMFLOAT3 Position; // The local position of the vertex DirectX::XMFLOAT4 Color; // The color of the vertex }; \ No newline at end of file diff --git a/VertexShader.hlsl b/VertexShader.hlsl index e0bf00b..300b112 100644 --- a/VertexShader.hlsl +++ b/VertexShader.hlsl @@ -11,8 +11,8 @@ struct VertexShaderInput // | Name Semantic // | | | // v v v - float3 position : POSITION; // XYZ position - float4 color : COLOR; // RGBA color + float3 localPosition : POSITION; // XYZ position + float4 color : COLOR; // RGBA color }; // Struct representing the data we're sending down the pipeline @@ -27,8 +27,8 @@ struct VertexToPixel // | Name Semantic // | | | // v v v - float4 position : SV_POSITION; // XYZW position (System Value Position) - float4 color : COLOR; // RGBA color + float4 screenPosition : SV_POSITION; // XYZW position (System Value Position) + float4 color : COLOR; // RGBA color }; // -------------------------------------------------------- @@ -51,7 +51,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.position = float4(input.position, 1.0f); + output.screenPosition = float4(input.localPosition, 1.0f); // Pass the color through // - The values will be interpolated per-pixel by the rasterizer