mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 21:30:53 +00:00
Mkae transform feedback data public on .NET side
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user