glClearDepthdNv function
define glClearDepthdNV GLEW_GET_FUN(__glewClearDepthdNV)
GLEW_FUN_EXPORT PFNGLCLEARDEPTHDNVPROC __glewClearDepthdNV
typedef void (GLAPIENTRY * PFNGLCLEARDEPTHDNVPROC) (GLdouble depth)
Implementation
void glClearDepthdNv(double depth) {
final glClearDepthdNvAsFunction = _glClearDepthdNv
.cast<NativeFunction<Void Function(Double depth)>>()
.asFunction<void Function(double depth)>();
return glClearDepthdNvAsFunction(depth);
}