mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
9 lines
112 B
Plaintext
9 lines
112 B
Plaintext
|
void main()
|
||
|
{
|
||
|
float1 f1;
|
||
|
f1.x = 0.5;
|
||
|
|
||
|
// This is not implemented
|
||
|
// f1.xx = float2(0.6, 0.7);
|
||
|
}
|