Accept an IntPtr for VertexBuffer.SetData.

This commit is contained in:
Paul Chote
2015-05-23 10:34:02 +01:00
parent 4df64eb18f
commit b1f4bd85d6
3 changed files with 12 additions and 0 deletions

View File

@@ -105,6 +105,7 @@ namespace OpenRA.Renderer.Null
public void Bind() { }
public void SetData(T[] vertices, int length) { }
public void SetData(T[] vertices, int start, int length) { }
public void SetData(IntPtr data, int start, int length) { }
public void Dispose() { }
}
}