glCheckFramebufferStatus method

int glCheckFramebufferStatus(
  1. int target
)

Implementation

int glCheckFramebufferStatus(
  int target,
) {
  return (_glCheckFramebufferStatus ??= _dylib.lookupFunction<
      _c_glCheckFramebufferStatus,
      _dart_glCheckFramebufferStatus>('glCheckFramebufferStatus'))(
    target,
  );
}