Sign in
skia
/
skia
/
8fdce7ab9a5f3fd707b9993b1905601f35323b47
/
.
/
resources
/
sksl
/
shared
/
StorageBufferVertex.vert
blob: 4208dd809879745275514aa83c00236dbc4a62c7 [
file
] [
log
] [
blame
]
layout
(
set
=
0
,
binding
=
0
)
readonly
buffer storageBuffer
{
float2
[]
vertices
;
};
void
main
()
{
sk_Position
=
float4
(
vertices
[
sk_VertexID
],
1.0
,
1.0
);
}