12 lines
155 B
GLSL
12 lines
155 B
GLSL
void main()
|
|
{
|
|
int n1 = 41u;
|
|
int n2 = 42U;
|
|
float f1 = 1.20LF;
|
|
float f2 = 3.F;
|
|
float f3 = .0003lf;
|
|
float f7 = 2E-9f;
|
|
|
|
float foo = - (- 2.f);
|
|
}
|