glClearDepth function
GLAPI void GLAPIENTRY glClearDepth (GLclampd depth)
Implementation
void glClearDepth(double depth) {
final glClearDepthLookupFunction = libGL.lookupFunction<
Void Function(Double depth), void Function(double depth)>('glClearDepth');
return glClearDepthLookupFunction(depth);
}