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