public static unsafe void VertexAttribL4(this ExtVertexAttrib64bit thisApi, [Flow(FlowDirection.In)] uint index, [Count(Count = 4), Flow(FlowDirection.In)] ReadOnlySpan <double> v) { // SpanOverloader thisApi.VertexAttribL4(index, in v.GetPinnableReference()); }
public static unsafe void VertexAttribLPointer <T0>(this ExtVertexAttrib64bit thisApi, [Flow(FlowDirection.In)] uint index, [Flow(FlowDirection.In)] int size, [Flow(FlowDirection.In)] VertexAttribLType type, [Flow(FlowDirection.In)] uint stride, [Count(Parameter = "size"), Flow(FlowDirection.In)] ReadOnlySpan <T0> pointer) where T0 : unmanaged { // SpanOverloader thisApi.VertexAttribLPointer(index, size, type, stride, in pointer.GetPinnableReference()); }
public static unsafe void GetVertexAttribL(this ExtVertexAttrib64bit thisApi, [Flow(FlowDirection.In)] uint index, [Flow(FlowDirection.In)] VertexAttribEnum pname, [Count(Computed = "pname"), Flow(FlowDirection.Out)] Span <double> @params) { // SpanOverloader thisApi.GetVertexAttribL(index, pname, out @params.GetPinnableReference()); }