11 lines
172 B
GLSL
11 lines
172 B
GLSL
|
|
// Copyright 2020 Google LLC
|
||
|
|
|
||
|
|
struct VSOutput
|
||
|
|
{
|
||
|
|
[[vk::location(0)]] float3 Color : COLOR0;
|
||
|
|
};
|
||
|
|
|
||
|
|
float4 main(VSOutput input) : SV_TARGET
|
||
|
|
{
|
||
|
|
return float4(input.Color, 1.0);
|
||
|
|
}
|