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.
File last commit:
Show/Diff file:
Action:
SpriteFontPlus.FNA.Core.csproj
40 lines | 1.7 KiB | text/plain | TextLexer
Lots of cleanup.
r149 <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<PackageId>SpriteFontPlus</PackageId>
<Authors>SpriteFontPlusTeam</Authors>
<Product>SpriteFontPlus</Product>
<Description>Library extending functionality of the SpriteFont.</Description>
<PackageLicense>https://github.com/rds1983/SpriteFontPlus/blob/master/LICENSE</PackageLicense>
<PackageProjectUrl>https://github.com/rds1983/SpriteFontPlus</PackageProjectUrl>
<AssemblyName>SpriteFontPlus</AssemblyName>
<RootNamespace>SpriteFontPlus</RootNamespace>
<Version>1.0.0.0</Version>
<DefineConstants>$(DefineConstants);STBSHARP_INTERNAL;FNA</DefineConstants>
<OutputPath>bin\FNA\$(Configuration)</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\deps\StbTrueTypeSharp\src\**\*.cs" LinkBase="StbTrueTypeSharp" />
<Compile Include="..\deps\BMFontToSpriteFont\**\*.cs" LinkBase="BMFontToSpriteFont" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\FNA\FNA.Core.csproj" />
</ItemGroup>
Add nullable warnings and fix a few.
r221
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="LinqFaster" Version="1.0.0" />
</ItemGroup>
Refactor dialog into separate Engine....
r405
<ItemGroup>
<PackageReference Include="Ink.Engine.Runtime-Unofficial" Version="1.0.0-nightly-21061600" />
</ItemGroup>
Lots of cleanup.
r149 </Project>