mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 20:59:04 +00:00
15 lines
198 B
GLSL
15 lines
198 B
GLSL
|
|
struct PS_OUTPUT
|
|
{
|
|
float4 Color : SV_Target0;
|
|
};
|
|
|
|
void not_the_entry_point() { }
|
|
int also_not_the_entry_point;
|
|
|
|
PS_OUTPUT main()
|
|
{
|
|
PS_OUTPUT psout;
|
|
psout.Color = 0;
|
|
return psout;
|
|
}
|