This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Runtime.CompilerServices; | |
namespace gpm.core.Util | |
{ | |
/// <summary> | |
/// A scoped stopwatch that will log the elapsed time automatically when exiting scope. | |
/// Usage: using var ssw = new ScopedStopwatch(); | |
/// </summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | |
<metadata minClientVersion="2.5"> | |
<tags>Native, native</tags> | |
</metadata> | |
<files> | |
<!-- Include everything in \build --> | |
<file src="build\**" target="build" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meta: | |
id: rdar | |
file-extension: archive | |
endian: le | |
seq: | |
- id: header | |
type: ar_header | |
types: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meta: | |
id: cr2w | |
endian: le | |
seq: | |
- id: header | |
type: cr2w_header | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meta: | |
id: dds | |
file-extension: dds | |
endian: le | |
seq: | |
- id: magic | |
contents: [0x44, 0x44, 0x53, 0x20] | |
- id: dwsize | |
type: u4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meta: | |
id: fx11obj | |
file-extension: fx11obj | |
endian: le | |
seq: | |
- id: header | |
type: dxbc_header | |
- id: chunks | |
type: dxbc_chunk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meta: | |
id: cache | |
file-extension: .cache | |
endian: le | |
instances: | |
footer: | |
pos: _io.size - 48 | |
size: 48 | |
type: footer |