| 12345678910111213141516171819 |
- using System;
- using System.Runtime.InteropServices;
- using System.Collections.Generic;
- namespace Urho
- {
- public partial class IndexBuffer
- {
- public void SetData (short [] vertexData)
- {
- Runtime.ValidateRefCounted(this);
- unsafe {
- fixed (short *p = &vertexData [0]){
- SetData ((void *) p);
- }
- }
- }
- }
- }
|