From f89e5a80e25a3f9b3aa616810d1acf9783dd821a Mon Sep 17 00:00:00 2001 From: baldurk Date: Sun, 18 Jan 2015 12:04:52 +0000 Subject: [PATCH] Mkae transform feedback data public on .NET side --- renderdocui/Interop/GLPipelineState.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/renderdocui/Interop/GLPipelineState.cs b/renderdocui/Interop/GLPipelineState.cs index a23587478..4bebd46f0 100644 --- a/renderdocui/Interop/GLPipelineState.cs +++ b/renderdocui/Interop/GLPipelineState.cs @@ -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;