Sign in
dawn
/
dawn
/
60d73de8766da3ca41a53f77a5d9e1d450166210
/
.
/
test
/
tint
/
extensions
/
texel_fetch
/
multiple_outputs
/
multiple_inputs.wgsl
blob: d88872c72e7f479435a94d94d88f8d6a78ab41b8 [
file
] [
log
] [
blame
]
enable chromium_experimental_framebuffer_fetch
;
struct
Out
{
@location
(
0
)
x
:
vec4f
,
@location
(
2
)
y
:
vec4f
,
@location
(
4
)
z
:
vec4f
,
}
@fragment
fn f
(
@color
(
1
)
fbf_1
:
vec4f
,
@color
(
3
)
fbf_3
:
vec4f
)
->
Out
{
return
Out
(
fbf_1
,
vec4f
(
20
),
fbf_3
);
}