glTexStorage3DMultisample method

void glTexStorage3DMultisample(
  1. int target,
  2. int samples,
  3. int internalformat,
  4. int width,
  5. int height,
  6. int depth,
  7. int fixedsamplelocations,
)

Implementation

void glTexStorage3DMultisample(
  int target,
  int samples,
  int internalformat,
  int width,
  int height,
  int depth,
  int fixedsamplelocations,
) {
  return (_glTexStorage3DMultisample ??= _dylib.lookupFunction<
      _c_glTexStorage3DMultisample,
      _dart_glTexStorage3DMultisample>('glTexStorage3DMultisample'))(
    target,
    samples,
    internalformat,
    width,
    height,
    depth,
    fixedsamplelocations,
  );
}