File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change
1
+ <Project xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" TreatAsLocalProperty =" OutDir" >
2
+ <PropertyGroup >
3
+ <RepositoryRootDirectory >$(MSBuildThisFileDirectory)</RepositoryRootDirectory >
4
+ <BinDir >$(RepositoryRootDirectory)bin</BinDir >
5
+ <OutputPath >$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\$(Configuration)'))\$(MSBuildProjectName)</OutputPath >
6
+ <BaseIntermediateOutputPath >$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\obj\$(MSBuildProjectName)'))\</BaseIntermediateOutputPath >
7
+ <ProjectDir >$(MSBuildThisFileDirectory)</ProjectDir >
8
+ </PropertyGroup >
9
+ </Project >
Original file line number Diff line number Diff line change @@ -130,11 +130,11 @@ public unsafe struct NativeDrawList
130
130
public uint _VtxCurrentIdx ;
131
131
132
132
/// <summary>
133
- /// [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)
133
+ /// [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector operators too much)
134
134
/// </summary>
135
135
public IntPtr _VtxWritePtr ;
136
136
/// <summary>
137
- /// [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)
137
+ /// [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector operators too much)
138
138
/// </summary>
139
139
public IntPtr _IdxWritePtr ;
140
140
You can’t perform that action at this time.
0 commit comments