Sign in
skia
/
skia
/
chrome/m141
/
.
/
resources
/
sksl
/
errors
/
InvalidMeshVertexMainParameters.mvert
blob: 98282ee54525b47f84a0ad234fe107594d5a1199 [
file
] [
log
] [
blame
]
struct
Varyings
{
float2 position
;
};
struct
NotAttributes
{
float2 position
;
};
Varyings
main
(
const
NotAttributes
attr
)
{
return
Varyings
(
attr
.
position
);
}
/*%%*
'main' parameter must be 'const Attributes'
*%%*/