glClearDepthf function opengl_glext

void glClearDepthf(
  1. double d
)
GLAPI void APIENTRY glClearDepthf (GLfloat d)

Implementation

void glClearDepthf(double d) {
  final glClearDepthfAsFunction = _glClearDepthf
      .cast<NativeFunction<Void Function(Float d)>>()
      .asFunction<void Function(double d)>();
  return glClearDepthfAsFunction(d);
}