1#version 460 core 2 3void f1(float x) 4{ 5 gl_ClipDistance[6] = x; 6 gl_CullDistance[1] = x; 7} 8 9void main(){ 10 f1(0.1); 11}