├── .gitignore ├── FastBitmap.sln ├── FastBitmap ├── FastBitmap.cs ├── FastBitmapLib.csproj └── Properties │ └── AssemblyInfo.cs ├── FastBitmapTests ├── BitmapSnapshot.cs ├── BitmapSnapshotTesting.cs ├── FastBitmapTests.cs ├── FastBitmapTests.csproj ├── Properties │ └── AssemblyInfo.cs ├── Snapshot │ └── Files │ │ └── FastBitmapTests.FastBitmapTests │ │ ├── TestClippingCopyRegion.png │ │ ├── TestComplexCopyRegion.png │ │ ├── TestInvalidCopyRegion.png │ │ ├── TestOutOfBoundsCopyRegion.png │ │ ├── TestSimpleCopyRegion.png │ │ └── TestSlicedDestinationCopyRegion.png └── packages.config ├── LICENSE ├── README.md └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/.gitignore -------------------------------------------------------------------------------- /FastBitmap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmap.sln -------------------------------------------------------------------------------- /FastBitmap/FastBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmap/FastBitmap.cs -------------------------------------------------------------------------------- /FastBitmap/FastBitmapLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmap/FastBitmapLib.csproj -------------------------------------------------------------------------------- /FastBitmap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FastBitmapTests/BitmapSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/BitmapSnapshot.cs -------------------------------------------------------------------------------- /FastBitmapTests/BitmapSnapshotTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/BitmapSnapshotTesting.cs -------------------------------------------------------------------------------- /FastBitmapTests/FastBitmapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/FastBitmapTests.cs -------------------------------------------------------------------------------- /FastBitmapTests/FastBitmapTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/FastBitmapTests.csproj -------------------------------------------------------------------------------- /FastBitmapTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestClippingCopyRegion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestClippingCopyRegion.png -------------------------------------------------------------------------------- /FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestComplexCopyRegion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestComplexCopyRegion.png -------------------------------------------------------------------------------- /FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestInvalidCopyRegion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestInvalidCopyRegion.png -------------------------------------------------------------------------------- /FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestOutOfBoundsCopyRegion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestOutOfBoundsCopyRegion.png -------------------------------------------------------------------------------- /FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestSimpleCopyRegion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestSimpleCopyRegion.png -------------------------------------------------------------------------------- /FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestSlicedDestinationCopyRegion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/Snapshot/Files/FastBitmapTests.FastBitmapTests/TestSlicedDestinationCopyRegion.png -------------------------------------------------------------------------------- /FastBitmapTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/FastBitmapTests/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuizZak/FastBitmap/HEAD/appveyor.yml --------------------------------------------------------------------------------