Mkae transform feedback data public on .NET side

This commit is contained in:
baldurk
2015-01-18 12:04:52 +00:00
parent ab4f26871f
commit f89e5a80e2
+6 -6
View File
@@ -183,15 +183,15 @@ namespace renderdoc
[StructLayout(LayoutKind.Sequential)]
public class Feedback
{
ResourceId Obj;
public ResourceId Obj;
[CustomMarshalAs(CustomUnmanagedType.FixedArray, FixedLength = 4)]
ResourceId[] BufferBinding;
public ResourceId[] BufferBinding;
[CustomMarshalAs(CustomUnmanagedType.FixedArray, FixedLength = 4)]
UInt64[] Offset;
public UInt64[] Offset;
[CustomMarshalAs(CustomUnmanagedType.FixedArray, FixedLength = 4)]
UInt64[] Size;
bool Active;
bool Paused;
public UInt64[] Size;
public bool Active;
public bool Paused;
};
[CustomMarshalAs(CustomUnmanagedType.CustomClass)]
public Feedback m_Feedback;