glClearDepthfOes function opengl_glext
GLAPI void APIENTRY glClearDepthfOES (GLclampf depth)
Implementation
void glClearDepthfOes(double depth) {
  final glClearDepthfOesAsFunction = _glClearDepthfOes
      .cast<NativeFunction<Void Function(Float depth)>>()
      .asFunction<void Function(double depth)>();
  return glClearDepthfOesAsFunction(depth);
}