2020-05-21 10:20:19 +00:00
|
|
|
// Copyright 2020 Google LLC
|
2024-01-06 16:47:11 +01:00
|
|
|
// Copyright 2023 Sascha Willems
|
2020-05-21 10:20:19 +00:00
|
|
|
|
|
|
|
|
struct VSInput
|
|
|
|
|
{
|
|
|
|
|
[[vk::location(0)]] float4 Pos : POSITION0;
|
|
|
|
|
[[vk::location(1)]] float3 Normal : NORMAL0;
|
|
|
|
|
[[vk::location(2)]] float3 Color : COLOR0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct UBO
|
|
|
|
|
{
|
|
|
|
|
float4x4 projection;
|
|
|
|
|
float4x4 view;
|
2024-01-06 16:47:11 +01:00
|
|
|
float4 lightpos;
|
|
|
|
|
float4x4 model[3];
|
2020-05-21 10:20:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
cbuffer ubo : register(b0) { UBO ubo; }
|
|
|
|
|
|
|
|
|
|
struct VSOutput
|
|
|
|
|
{
|
|
|
|
|
float4 Pos : SV_POSITION;
|
|
|
|
|
[[vk::location(0)]] float3 Normal : NORMAL0;
|
|
|
|
|
[[vk::location(1)]] float3 Color : COLOR0;
|
|
|
|
|
[[vk::location(2)]] float3 EyePos : POSITION0;
|
|
|
|
|
[[vk::location(3)]] float3 LightVec : TEXCOORD2;
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-06 16:47:11 +01:00
|
|
|
VSOutput main(VSInput input, uint InstanceIndex : SV_InstanceID)
|
2020-05-21 10:20:19 +00:00
|
|
|
{
|
|
|
|
|
VSOutput output = (VSOutput)0;
|
2024-01-06 16:47:11 +01:00
|
|
|
output.Normal = normalize(mul((float3x3)transpose(ubo.model[InstanceIndex]), input.Normal).xyz);
|
2020-05-21 10:20:19 +00:00
|
|
|
output.Color = input.Color;
|
2024-01-06 16:47:11 +01:00
|
|
|
float4x4 modelView = mul(ubo.view, ubo.model[InstanceIndex]);
|
2020-05-21 10:20:19 +00:00
|
|
|
float4 pos = mul(modelView, input.Pos);
|
|
|
|
|
output.EyePos = mul(modelView, pos).xyz;
|
2024-01-06 16:47:11 +01:00
|
|
|
float4 lightPos = mul(float4(ubo.lightpos.xyz, 1.0), modelView);
|
2020-05-21 10:20:19 +00:00
|
|
|
output.LightVec = normalize(lightPos.xyz - output.EyePos);
|
|
|
|
|
output.Pos = mul(ubo.projection, pos);
|
|
|
|
|
return output;
|
|
|
|
|
}
|