1234567891011121314151617181920 |
- using System;
- using static Veldrid.MetalBindings.ObjectiveCRuntime;
- namespace Veldrid.MetalBindings
- {
- public struct MTLVertexAttributeDescriptorArray
- {
- public readonly IntPtr NativePtr;
- public MTLVertexAttributeDescriptor this[uint index]
- {
- get
- {
- IntPtr value = IntPtr_objc_msgSend(NativePtr, Selectors.objectAtIndexedSubscript, index);
- return new MTLVertexAttributeDescriptor(value);
- }
- set => objc_msgSend(NativePtr, Selectors.setObjectAtIndexedSubscript, value.NativePtr, index);
- }
- }
- }
|