mirror of
https://github.com/bevyengine/bevy
synced 2025-01-26 03:45:16 +00:00
7 lines
93 B
GLSL
7 lines
93 B
GLSL
|
float4 main() : SV_Target0
|
||
|
{
|
||
|
float4 test = { 0, 1, 2, 3 };
|
||
|
|
||
|
return length(test.a);
|
||
|
}
|