glTexStorage2DMultisample method

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

Implementation

void glTexStorage2DMultisample(
  int target,
  int samples,
  int internalformat,
  int width,
  int height,
  int fixedsamplelocations,
) {
  return _glTexStorage2DMultisample(
    target,
    samples,
    internalformat,
    width,
    height,
    fixedsamplelocations,
  );
}