Add shaders re-implemented in HLSL

These were written against the shaders at revision eddd724e7.
There have been changes made since then, which will need to be mirrored.

See `data/hlsl/README.md` for the current status of each sample.
This commit is contained in:
Ben Clayton 2020-05-21 10:20:19 +00:00
parent 10a1ecaf7b
commit cce75f1859
287 changed files with 11263 additions and 0 deletions

62
data/hlsl/hdr/bloom.frag Normal file
View file

@ -0,0 +1,62 @@
// Copyright 2020 Google LLC
Texture2D textureColor0 : register(t0);
SamplerState samplerColor0 : register(s0);
Texture2D textureColor1 : register(t1);
SamplerState samplerColor1 : register(s1);
[[vk::constant_id(0)]] const int dir = 0;
float4 main([[vk::location(0)]] float2 inUV : TEXCOORD0) : SV_TARGET
{
// From the OpenGL Super bible
const float weights[] = { 0.0024499299678342,
0.0043538453346397,
0.0073599963704157,
0.0118349786570722,
0.0181026699707781,
0.0263392293891488,
0.0364543006660986,
0.0479932050577658,
0.0601029809166942,
0.0715974486241365,
0.0811305381519717,
0.0874493212267511,
0.0896631113333857,
0.0874493212267511,
0.0811305381519717,
0.0715974486241365,
0.0601029809166942,
0.0479932050577658,
0.0364543006660986,
0.0263392293891488,
0.0181026699707781,
0.0118349786570722,
0.0073599963704157,
0.0043538453346397,
0.0024499299678342};
const float blurScale = 0.003;
const float blurStrength = 1.0;
float ar = 1.0;
// Aspect ratio for vertical blur pass
if (dir == 1)
{
float2 ts;
textureColor1.GetDimensions(ts.x, ts.y);
ar = ts.y / ts.x;
}
float2 P = inUV.yx - float2(0, (25 >> 1) * ar * blurScale);
float4 color = float4(0.0, 0.0, 0.0, 0.0);
for (int i = 0; i < 25; i++)
{
float2 dv = float2(0.0, i * blurScale) * ar;
color += textureColor1.Sample(samplerColor1, P + dv) * weights[i] * blurStrength;
}
return color;
}

15
data/hlsl/hdr/bloom.vert Normal file
View file

@ -0,0 +1,15 @@
// Copyright 2020 Google LLC
struct VSOutput
{
float4 Pos : SV_POSITION;
[[vk::location(0)]] float2 UV : TEXCOORD0;
};
VSOutput main(uint VertexIndex : SV_VertexID)
{
VSOutput output = (VSOutput)0;
output.UV = float2((VertexIndex << 1) & 2, VertexIndex & 2);
output.Pos = float4(output.UV * 2.0f - 1.0f, 0.0f, 1.0f);
return output;
}

View file

@ -0,0 +1,11 @@
// Copyright 2020 Google LLC
Texture2D textureColor0 : register(t0);
SamplerState samplerColor0 : register(s0);
Texture2D textureColor1 : register(t1);
SamplerState samplerColor1 : register(s1);
float4 main([[vk::location(0)]] float2 inUV : TEXCOORD0) : SV_TARGET
{
return textureColor0.Sample(samplerColor0, inUV);
}

View file

@ -0,0 +1,15 @@
// Copyright 2020 Google LLC
struct VSOutput
{
float4 Pos : SV_POSITION;
[[vk::location(0)]] float2 UV : TEXCOORD0;
};
VSOutput main(uint VertexIndex : SV_VertexID)
{
VSOutput output = (VSOutput)0;
output.UV = float2((VertexIndex << 1) & 2, VertexIndex & 2);
output.Pos = float4(output.UV * 2.0f - 1.0f, 0.0f, 1.0f);
return output;
}

108
data/hlsl/hdr/gbuffer.frag Normal file
View file

@ -0,0 +1,108 @@
// Copyright 2020 Google LLC
TextureCube textureEnvMap : register(t1);
SamplerState samplerEnvMap : register(s1);
struct VSOutput
{
[[vk::location(0)]] float3 UVW : TEXCOORD0;
[[vk::location(1)]] float3 Pos : POSITION0;
[[vk::location(2)]] float3 Normal : NORMAL0;
[[vk::location(3)]] float3 ViewVec : TEXCOORD1;
[[vk::location(4)]] float3 LightVec : TEXCOORD2;
};
struct FSOutput
{
float4 Color0 : SV_TARGET0;
float4 Color1 : SV_TARGET1;
};
[[vk::constant_id(0)]] const int type = 0;
#define PI 3.1415926
#define TwoPI (2.0 * PI)
struct UBO {
float4x4 projection;
float4x4 modelview;
float4x4 inverseModelview;
};
cbuffer ubo : register(b0) { UBO ubo; }
cbuffer Exposure : register(b2)
{
float exposure;
}
FSOutput main(VSOutput input)
{
FSOutput output = (FSOutput)0;
float4 color;
float3 wcNormal;
switch (type) {
case 0: // Skybox
{
float3 normal = normalize(input.UVW);
color = textureEnvMap.Sample(samplerEnvMap, normal);
}
break;
case 1: // Reflect
{
float3 wViewVec = mul((float4x3)ubo.inverseModelview, normalize(input.ViewVec)).xyz;
float3 normal = normalize(input.Normal);
float3 wNormal = mul((float4x3)ubo.inverseModelview, normal).xyz;
float NdotL = max(dot(normal, input.LightVec), 0.0);
float3 eyeDir = normalize(input.ViewVec);
float3 halfVec = normalize(input.LightVec + eyeDir);
float NdotH = max(dot(normal, halfVec), 0.0);
float NdotV = max(dot(normal, eyeDir), 0.0);
float VdotH = max(dot(eyeDir, halfVec), 0.0);
// Geometric attenuation
float NH2 = 2.0 * NdotH;
float g1 = (NH2 * NdotV) / VdotH;
float g2 = (NH2 * NdotL) / VdotH;
float geoAtt = min(1.0, min(g1, g2));
const float F0 = 0.6;
const float k = 0.2;
// Fresnel (schlick approximation)
float fresnel = pow(1.0 - VdotH, 5.0);
fresnel *= (1.0 - F0);
fresnel += F0;
float spec = (fresnel * geoAtt) / (NdotV * NdotL * 3.14);
color = textureEnvMap.Sample(samplerEnvMap, reflect(-wViewVec, wNormal));
color = float4(color.rgb * NdotL * (k + spec * (1.0 - k)), 1.0);
}
break;
case 2: // Refract
{
float3 wViewVec = mul((float4x3)ubo.inverseModelview, normalize(input.ViewVec)).xyz;
float3 wNormal = mul((float4x3)ubo.inverseModelview, input.Normal).xyz;
color = textureEnvMap.Sample(samplerEnvMap, refract(-wViewVec, wNormal, 1.0/1.6));
}
break;
}
// Color with manual exposure into attachment 0
output.Color0.rgb = float3(1.0, 1.0, 1.0) - exp(-color.rgb * exposure);
// Bright parts for bloom into attachment 1
float l = dot(output.Color0.rgb, float3(0.2126, 0.7152, 0.0722));
float threshold = 0.75;
output.Color1.rgb = (l > threshold) ? output.Color0.rgb : float3(0.0, 0.0, 0.0);
output.Color1.a = 1.0;
return output;
}

View file

@ -0,0 +1,51 @@
// Copyright 2020 Google LLC
struct VSInput
{
[[vk::location(0)]] float3 Pos : POSITION0;
[[vk::location(1)]] float3 Normal : NORMAL0;
};
[[vk::constant_id(0)]] const int type = 0;
struct UBO {
float4x4 projection;
float4x4 modelview;
float4x4 inverseModelview;
};
cbuffer ubo : register(b0) { UBO ubo; }
struct VSOutput
{
float4 Pos : SV_POSITION;
[[vk::location(0)]] float3 UVW : TEXCOORD0;
[[vk::location(1)]] float3 WorldPos : POSITION0;
[[vk::location(2)]] float3 Normal : NORMAL0;
[[vk::location(3)]] float3 ViewVec : TEXCOORD1;
[[vk::location(4)]] float3 LightVec : TEXCOORD2;
};
VSOutput main(VSInput input)
{
VSOutput output = (VSOutput)0;
output.UVW = input.Pos;
switch(type) {
case 0: // Skybox
output.WorldPos = mul((float4x3)ubo.modelview, input.Pos).xyz;
output.Pos = mul(ubo.projection, float4(output.WorldPos, 1.0));
break;
case 1: // Object
output.WorldPos = mul(ubo.modelview, float4(input.Pos, 1.0)).xyz;
output.Pos = mul(ubo.projection, mul(ubo.modelview, float4(input.Pos.xyz, 1.0)));
break;
}
output.WorldPos = mul(ubo.modelview, float4(input.Pos, 1.0)).xyz;
output.Normal = mul((float4x3)ubo.modelview, input.Normal).xyz;
float3 lightPos = float3(0.0f, -5.0f, 5.0f);
output.LightVec = lightPos.xyz - output.WorldPos.xyz;
output.ViewVec = -output.WorldPos.xyz;
return output;
}