glClearDepthf function opengl_glext
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);
}