Show More
Commit Description:
Add timers for Simulation and various engines...
Commit Description:
Add timers for Simulation and various engines
Starting to add additional timers for different stages of the process of
updating in order to get more insight into what is slowing it down.
The update takes 9ms, which is much longer than it used to.
Engine-specific timers are coming later.
References:
File last commit:
Show/Diff file:
Action:
ImPlot.NET/ImPlot.NET.csproj
36 lines | 1.6 KiB | text/plain | TextLexer
36 lines | 1.6 KiB | text/plain | TextLexer
r505 | <Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | ||||
<Description>A .NET wrapper for the ImPlot library.</Description> | ||||
<AssemblyVersion>0.8.0</AssemblyVersion> | ||||
<Authors>Eric Mellino</Authors> | ||||
r571 | <TargetFramework>netstandard2.0</TargetFramework> | |||
r505 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | |||
<DebugType>portable</DebugType> | ||||
<AssemblyName>ImPlot.NET</AssemblyName> | ||||
<PackageId>ImPlot.NET</PackageId> | ||||
<PackagePrereleaseIdentifier></PackagePrereleaseIdentifier> | ||||
<PackageVersion>$(AssemblyVersion)$(PackagePrereleaseIdentifier)</PackageVersion> | ||||
<PackageTags>ImPlot ImGui ImGui.NET Immediate Mode GUI</PackageTags> | ||||
<PackageProjectUrl>https://github.com/mellinoe/imgui.net</PackageProjectUrl> | ||||
r571 | <!-- <DocumentationFile Condition="'$(Configuration)' == 'Release'">$(OutputPath)\ImPlot.NET.xml</DocumentationFile> --> | |||
r505 | <RootNamespace>ImPlotNET</RootNamespace> | |||
</PropertyGroup> | ||||
<ItemGroup> | ||||
<PackageReference Include="System.Numerics.Vectors" Version="4.4.0" /> | ||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" /> | ||||
<PackageReference Include="System.Buffers" Version="4.4.0" /> | ||||
</ItemGroup> | ||||
<ItemGroup> | ||||
<ProjectReference Include="..\ImGui.NET\ImGui.NET.csproj" /> | ||||
</ItemGroup> | ||||
<ItemGroup> | ||||
<Folder Include="build\net40" /> | ||||
r571 | <Content Include="build\net40\ImPlot.NET.targets"> | |||
<PackagePath>build/net40/ImGui.NET.targets</PackagePath> | ||||
<Pack>true</Pack> | ||||
</Content> | ||||
r505 | </ItemGroup> | |||
r571 | <!-- <ItemGroup> --> | |||
<!-- <None Remove="build\net40\ImPlot.NET.targets" /> --> | ||||
<!-- </ItemGroup> --> | ||||
r505 | </Project> | |||