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.
Show/Diff file:
Action:
ImPlot.NET/ImPlot.NET.csproj
36 lines | 1.6 KiB | text/plain | TextLexer
Include implot.
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>
Backed out changeset 08360195361c
r571 <TargetFramework>netstandard2.0</TargetFramework>
Include implot.
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>
Backed out changeset 08360195361c
r571 <!-- <DocumentationFile Condition="'$(Configuration)' == 'Release'">$(OutputPath)\ImPlot.NET.xml</DocumentationFile> -->
Include implot.
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" />
Backed out changeset 08360195361c
r571 <Content Include="build\net40\ImPlot.NET.targets">
<PackagePath>build/net40/ImGui.NET.targets</PackagePath>
<Pack>true</Pack>
</Content>
Include implot.
r505 </ItemGroup>
Backed out changeset 08360195361c
r571 <!-- <ItemGroup> -->
<!-- <None Remove="build\net40\ImPlot.NET.targets" /> -->
<!-- </ItemGroup> -->
Include implot.
r505 </Project>