You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
147 B
9 lines
147 B
4 months ago
|
half attr1;
|
||
|
int attr2 = 123;
|
||
|
float attr3;
|
||
|
half4 attr4 = half4(4, 5, 6, 7);
|
||
|
void main()
|
||
|
{
|
||
|
sk_FragColor = half4(attr1, attr2, attr3, attr4.x);
|
||
|
}
|