glClearDepth function opengl

void glClearDepth(
  1. double depth
)
GLAPI void GLAPIENTRY glClearDepth( GLclampd depth )

Implementation

void glClearDepth(double depth) {
  final glClearDepthAsFunction = _glClearDepth
      .cast<NativeFunction<Void Function(Double depth)>>()
      .asFunction<void Function(double depth)>();
  return glClearDepthAsFunction(depth);
}