2012-08-09 09:45:04 +00:00
|
|
|
using System;
|
2012-02-19 13:41:02 +00:00
|
|
|
using System.IO;
|
|
|
|
using ANX.Framework.Graphics;
|
|
|
|
|
2012-08-09 09:45:04 +00:00
|
|
|
// This file is part of the ANX.Framework created by the
|
|
|
|
// "ANX.Framework developer group" and released under the Ms-PL license.
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
2012-02-19 13:41:02 +00:00
|
|
|
|
|
|
|
namespace ANX.Framework.NonXNA.RenderSystem
|
|
|
|
{
|
|
|
|
public interface INativeVertexBuffer : INativeBuffer
|
|
|
|
{
|
2015-09-30 21:31:15 +02:00
|
|
|
void GetData<T>(int offsetInBytes, T[] data, int startIndex, int elementCount, int vertexStride) where T : struct;
|
2012-02-19 13:41:02 +00:00
|
|
|
|
2015-09-30 21:31:15 +02:00
|
|
|
void SetData<T>(int offsetInBytes, T[] data, int startIndex, int elementCount, int vertexStride) where T : struct;
|
2012-02-19 13:41:02 +00:00
|
|
|
}
|
|
|
|
}
|