Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
f050209ce1349ce76b83d226e3861bda9d927009
/
.
/
Test
/
hlsl.structbuffer.append.frag
blob: 4c4bc3fc56d2e0d760a2c9bb7f857503fe37c401 [
file
] [
log
] [
blame
]
AppendStructuredBuffer
<float4>
sbuf_a
;
ConsumeStructuredBuffer
<float4>
sbuf_c
;
AppendStructuredBuffer
<float4>
sbuf_unused
;
float4 main
(
uint
pos
:
FOO
)
:
SV_Target0
{
sbuf_a
.
Append
(
float4
(
1
,
2
,
3
,
4
));
return
sbuf_c
.
Consume
();
}