Sign in
dawn
/
tint
/
5f6a185d0210fa6adf8bbcc4c2f4f3133e671001
/
.
/
test
/
vk-gl-cts
/
rasterization
/
line_continuity
/
line-strip
/
0.wgsl
blob: a4fc5616d30781d586fad63dad8c33ed33fe28cb [
file
] [
log
] [
blame
]
var
<private>
color
:
vec4
<f32>
;
fn main_1
()
{
color
=
vec4
<f32>
(
1.0
,
1.0
,
1.0
,
1.0
);
return
;
}
struct
main_out
{
@location
(
0
)
color_1
:
vec4
<f32>
;
};
@stage
(
fragment
)
fn main
()
->
main_out
{
main_1
();
return
main_out
(
color
);
}