Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
b9197c812e5c10c646b897ee5681741c6b6c2787
/
.
/
Test
/
hlsl.PointSize.geom
blob: ef66fc891437bb3f1b40c159b7d53f1dd0e47b28 [
file
] [
log
] [
blame
]
struct
S
{
[[
vk
::
builtin
(
"PointSize"
)]]
float
ps
:
PSIZE
;
};
[
maxvertexcount
(
4
)]
void
main
([[
vk
::
builtin
(
"PointSize"
)]]
triangle
in
uint
ps
[
3
],
inout
LineStream
<
S
>
OutputStream
)
{
S s
;
OutputStream
.
Append
(
s
);
}