Sign in
skia
/
skia
/
e8ab6e172d07e8d0f04e1fdf17f1202a4547359a
/
.
/
resources
/
sksl
/
shared
/
HexUnsigned.sksl
blob: 165636c5446821ec2c3a4ad832e102bd28508eb4 [
file
] [
log
] [
blame
]
uniform half4 colorGreen
;
half4 main
(
float2 coords
)
{
uint
u1
=
0x0
;
u1
++;
uint
u2
=
0X1234abcdu
;
u2
++;
uint
u3
=
0x7ffffffeU
;
u3
++;
uint
u4
=
0Xfffffffe
;
u4
++;
ushort
u5
=
0xfffe
;
u5
++;
return
colorGreen
;
}