glClearDepthfOes function opengl_glext

void glClearDepthfOes(
  1. double depth
)
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);
}