glDepthFunc method

void glDepthFunc(
  1. int func
)

Implementation

void glDepthFunc(
  int func,
) {
  return (_glDepthFunc ??= _dylib
      .lookupFunction<_c_glDepthFunc, _dart_glDepthFunc>('glDepthFunc'))(
    func,
  );
}