public static void ColorTableParameterivSGI( ColorTableTargetSGI target, ColorTableParameterPNameSGI pname, int[] @params )
 {
     if (_ColorTableParameterivSGI == null) throw new Exception( "Extension method ColorTableParameterivSGI not found" );
      _ColorTableParameterivSGI( target, pname, @params );
 }
Exemplo n.º 2
0
 public static unsafe void ColorTableParameter(this SgiColorTable thisApi, [Flow(FlowDirection.In)] ColorTableTargetSGI target, [Flow(FlowDirection.In)] ColorTableParameterPNameSGI pname, [Count(Computed = "pname"), Flow(FlowDirection.In)] ReadOnlySpan <int> @params)
 {
     // SpanOverloader
     thisApi.ColorTableParameter(target, pname, in @params.GetPinnableReference());
 }