getTransformFeedbackVarying property

WebGLActiveInfo? Function(WebGLProgram, num) getTransformFeedbackVarying

Implementation

_i3.WebGLActiveInfo? Function(
  _i3.WebGLProgram,
  _i2.num,
) get getTransformFeedbackVarying => (
      _i3.WebGLProgram p0,
      _i2.num p1,
    ) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'getTransformFeedbackVarying',
          ),
          r'call',
          [
            this,
            p0,
            p1,
          ],
        );
void getTransformFeedbackVarying=(WebGLActiveInfo? value(WebGLProgram, num))

Implementation

set getTransformFeedbackVarying(
    _i3.WebGLActiveInfo? Function(
      _i3.WebGLProgram,
      _i2.num,
    ) value) {
  _i4.setProperty(
    this,
    'getTransformFeedbackVarying',
    _i4.allowInterop((
      p0,
      p1,
    ) =>
        () =>
            value(
              p0,
              p1,
            ) ??
            _i6.undefined),
  );
}