update shaders

This commit is contained in:
lightling 2022-02-27 13:43:18 -05:00
parent af283486da
commit f8f2fd6835
Signed by: lightling
GPG key ID: 016F11E0AA296B67
3 changed files with 16 additions and 11 deletions

View file

@ -190,14 +190,16 @@ void Game::Draw(float deltaTime, float totalTime)
for (auto entity : entities) for (auto entity : entities)
{ {
// create constant buffer
std::shared_ptr<SimpleVertexShader> vs = entity->GetMaterial()->GetVertexShader(); std::shared_ptr<SimpleVertexShader> vs = entity->GetMaterial()->GetVertexShader();
vs->SetFloat4("colorTint", entity->GetMaterial()->GetTint());
vs->SetMatrix4x4("world", entity->GetTransform()->GetWorldMatrix()); vs->SetMatrix4x4("world", entity->GetTransform()->GetWorldMatrix());
vs->SetMatrix4x4("view", camera->GetViewMatrix()); vs->SetMatrix4x4("view", camera->GetViewMatrix());
vs->SetMatrix4x4("projection", camera->GetProjectionMatrix()); vs->SetMatrix4x4("projection", camera->GetProjectionMatrix());
vs->CopyAllBufferData(); vs->CopyAllBufferData();
std::shared_ptr<SimplePixelShader> ps = entity->GetMaterial()->GetPixelShader();
ps->SetFloat4("tint", entity->GetMaterial()->GetTint());
ps->CopyAllBufferData();
entity->GetMaterial()->GetVertexShader()->SetShader(); entity->GetMaterial()->GetVertexShader()->SetShader();
entity->GetMaterial()->GetPixelShader()->SetShader(); entity->GetMaterial()->GetPixelShader()->SetShader();
entity->GetMesh()->Draw(); entity->GetMesh()->Draw();

View file

@ -1,3 +1,7 @@
cbuffer ExternalData : register(b0)
{
float4 tint;
}
// Struct representing the data we expect to receive from earlier pipeline stages // Struct representing the data we expect to receive from earlier pipeline stages
// - Should match the output of our corresponding vertex shader // - Should match the output of our corresponding vertex shader
@ -12,7 +16,7 @@ struct VertexToPixel
// | | | // | | |
// v v v // v v v
float4 screenPosition : SV_POSITION; float4 screenPosition : SV_POSITION;
float4 color : COLOR; float2 uv : TEXCOORD;
}; };
// -------------------------------------------------------- // --------------------------------------------------------
@ -26,9 +30,9 @@ struct VertexToPixel
// -------------------------------------------------------- // --------------------------------------------------------
float4 main(VertexToPixel input) : SV_TARGET float4 main(VertexToPixel input) : SV_TARGET
{ {
// Just return the input color // Just return the tint
// - This color (like most values passing through the rasterizer) is // - This color (like most values passing through the rasterizer) is
// interpolated for each pixel between the corresponding vertices // interpolated for each pixel between the corresponding vertices
// of the triangle we're rendering // of the triangle we're rendering
return input.color; return tint;
} }

View file

@ -1,6 +1,5 @@
cbuffer ExternalData : register(b0) cbuffer ExternalData : register(b0)
{ {
float4 colorTint;
matrix world; matrix world;
matrix view; matrix view;
matrix projection; matrix projection;
@ -19,7 +18,7 @@ struct VertexShaderInput
// | | | // | | |
// v v v // v v v
float3 localPosition : POSITION; float3 localPosition : POSITION;
float3 color : NORMAL; float3 normal : NORMAL;
float2 uv : UV; float2 uv : UV;
}; };
@ -35,8 +34,8 @@ struct VertexToPixel
// | Name Semantic // | Name Semantic
// | | | // | | |
// v v v // v v v
float4 screenPosition : SV_POSITION; // XYZW position (System Value Position) float4 screenPosition : SV_POSITION;
float4 color : COLOR; // RGBA color float2 uv : TEXCOORD;
}; };
// -------------------------------------------------------- // --------------------------------------------------------
@ -64,10 +63,10 @@ VertexToPixel main( VertexShaderInput input )
// a perspective projection matrix, which we'll get to in the future). // a perspective projection matrix, which we'll get to in the future).
output.screenPosition = mul(worldViewProjection, float4(input.localPosition, 1.0f)); output.screenPosition = mul(worldViewProjection, float4(input.localPosition, 1.0f));
// Pass the color through // Pass the uvs through
// - The values will be interpolated per-pixel by the rasterizer // - The values will be interpolated per-pixel by the rasterizer
// - We don't need to alter it here, but we do need to send it to the pixel shader // - We don't need to alter it here, but we do need to send it to the pixel shader
output.color = colorTint; output.uv = input.uv;
// Whatever we return will make its way through the pipeline to the // Whatever we return will make its way through the pipeline to the
// next programmable stage we're using (the pixel shader for now) // next programmable stage we're using (the pixel shader for now)