glDepthBoundsExt function opengl_glext

void glDepthBoundsExt(
  1. double zmin,
  2. double zmax
)
GLAPI void APIENTRY glDepthBoundsEXT (GLclampd zmin, GLclampd zmax)

Implementation

void glDepthBoundsExt(double zmin, double zmax) {
  final glDepthBoundsExtAsFunction = _glDepthBoundsExt
      .cast<NativeFunction<Void Function(Double zmin, Double zmax)>>()
      .asFunction<void Function(double zmin, double zmax)>();
  return glDepthBoundsExtAsFunction(zmin, zmax);
}