struct str {
	float params[3];
};
void main() {
	str s;
	for (int i = 0; i < 3; ++i)
		s.params[i] = 1.0;
    gl_FragColor = vec4(0.0);
}
