You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bat/tests/syntax-tests/highlighted/WGSL/test.wgsl

21 lines
3.0 KiB
Plaintext

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

struct VertexOut {
 @builtin(position) position : vec4f,
 @location(0) color : vec4f
}
@vertex
fn vertex_main(@location(0) position: vec4f,
 @location(1) color: vec4f) -> VertexOut
{
 var output : VertexOut;
 output.position = position;
 output.color = color;
 return output;
}
@fragment
fn fragment_main(fragData: VertexOut) -> @location(0) vec4f
{
 return fragData.color;
}