mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 00:32:46 +00:00
50 lines
1.0 KiB
GLSL
50 lines
1.0 KiB
GLSL
struct Light
|
|
{
|
|
float3 Position;
|
|
float Radius;
|
|
float4 Color;
|
|
};
|
|
|
|
uniform float4 UBO[12];
|
|
|
|
static float4 gl_Position;
|
|
static float4 aVertex;
|
|
static float4 vColor;
|
|
static float3 aNormal;
|
|
|
|
struct SPIRV_Cross_Input
|
|
{
|
|
float4 aVertex : TEXCOORD0;
|
|
float3 aNormal : TEXCOORD1;
|
|
};
|
|
|
|
struct SPIRV_Cross_Output
|
|
{
|
|
float4 vColor : TEXCOORD0;
|
|
float4 gl_Position : SV_Position;
|
|
};
|
|
|
|
void vert_main()
|
|
{
|
|
gl_Position = mul(aVertex, float4x4(UBO[0], UBO[1], UBO[2], UBO[3]));
|
|
vColor = 0.0f.xxxx;
|
|
for (int _82 = 0; _82 < 4; )
|
|
{
|
|
float3 _54 = aVertex.xyz - UBO[_82 * 2 + 4].xyz;
|
|
vColor += ((UBO[_82 * 2 + 5] * clamp(1.0f - (length(_54) / UBO[_82 * 2 + 4].w), 0.0f, 1.0f)) * dot(aNormal, normalize(_54)));
|
|
_82++;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
SPIRV_Cross_Output main(SPIRV_Cross_Input stage_input)
|
|
{
|
|
aVertex = stage_input.aVertex;
|
|
aNormal = stage_input.aNormal;
|
|
vert_main();
|
|
SPIRV_Cross_Output stage_output;
|
|
stage_output.gl_Position = gl_Position;
|
|
stage_output.vColor = vColor;
|
|
return stage_output;
|
|
}
|