texImage3D method

void texImage3D(
  1. int target,
  2. int level,
  3. int internalformat,
  4. int width,
  5. int height,
  6. int depth,
  7. int border,
  8. int format,
  9. int type, [
  10. dynamic srcData,
  11. int? srcOffset,
])

Implementation

void texImage3D(int target, int level, int internalformat, int width,
        int height, int depth, int border, int format, int type,
        [dynamic srcData, int? srcOffset]) =>
    js_util.callMethod(this, 'texImage3D', [
      target,
      level,
      internalformat,
      width,
      height,
      depth,
      border,
      format,
      type,
      srcData,
      srcOffset
    ]);