Browse Source

Added headers.

Former-commit-id: 636061f6fa83ad9d07703cde87587a8a92a41296
Former-commit-id: a9051b9e985b7e449af99da11f57d6ff1104efc3
Former-commit-id: 11bb7d89d672c12c4fa00bbe7f9826eca6dc189d
af/merge-core
dirk 10 years ago
parent
commit
31c8675e50
  1. 7
      tests/ImageProcessorCore.Benchmarks/Color/ColorEquality.cs
  2. 7
      tests/ImageProcessorCore.Benchmarks/Config.cs
  3. 9
      tests/ImageProcessorCore.Benchmarks/General/ArrayCopy.cs
  4. 7
      tests/ImageProcessorCore.Benchmarks/General/Clamp.cs
  5. 7
      tests/ImageProcessorCore.Benchmarks/Image/CopyPixels.cs
  6. 7
      tests/ImageProcessorCore.Benchmarks/Image/GetSetPixel.cs
  7. 7
      tests/ImageProcessorCore.Benchmarks/Program.cs
  8. 7
      tests/ImageProcessorCore.Benchmarks/Samplers/Crop.cs
  9. 7
      tests/ImageProcessorCore.Benchmarks/Samplers/Resize.cs

7
tests/ImageProcessorCore.Benchmarks/Color/ColorEquality.cs

@ -1,4 +1,9 @@
namespace ImageProcessorCore.Benchmarks
// <copyright file="ColorEquality.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageProcessorCore.Benchmarks
{
using BenchmarkDotNet.Attributes;

7
tests/ImageProcessorCore.Benchmarks/Config.cs

@ -1,4 +1,9 @@
using BenchmarkDotNet.Configs;
// <copyright file="Config.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
using BenchmarkDotNet.Configs;
namespace ImageProcessorCore.Benchmarks
{

9
tests/ImageProcessorCore.Benchmarks/General/ArrayCopy.cs

@ -1,8 +1,13 @@
using System;
using System.Runtime.CompilerServices;
// <copyright file="ArrayCopy.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageProcessorCore.Benchmarks.General
{
using System;
using System.Runtime.CompilerServices;
using BenchmarkDotNet.Attributes;
public class ArrayCopy

7
tests/ImageProcessorCore.Benchmarks/General/Clamp.cs

@ -1,7 +1,12 @@
using System;
// <copyright file="Clamp.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageProcessorCore.Benchmarks.General
{
using System;
using BenchmarkDotNet.Attributes;
public class Clamp

7
tests/ImageProcessorCore.Benchmarks/Image/CopyPixels.cs

@ -1,4 +1,9 @@
namespace ImageProcessorCore.Benchmarks.Image
// <copyright file="CopyPixels.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageProcessorCore.Benchmarks.Image
{
using System.Threading.Tasks;

7
tests/ImageProcessorCore.Benchmarks/Image/GetSetPixel.cs

@ -1,4 +1,9 @@
namespace ImageProcessorCore.Benchmarks.Image
// <copyright file="GetSetPixel.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageProcessorCore.Benchmarks.Image
{
using System.Drawing;

7
tests/ImageProcessorCore.Benchmarks/Program.cs

@ -1,4 +1,9 @@
namespace ImageProcessorCore.Benchmarks
// <copyright file="Program.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageProcessorCore.Benchmarks
{
using BenchmarkDotNet.Running;

7
tests/ImageProcessorCore.Benchmarks/Samplers/Crop.cs

@ -1,4 +1,9 @@
namespace ImageProcessorCore.Benchmarks
// <copyright file="Crop.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageProcessorCore.Benchmarks
{
using System.Drawing;
using System.Drawing.Drawing2D;

7
tests/ImageProcessorCore.Benchmarks/Samplers/Resize.cs

@ -1,4 +1,9 @@
namespace ImageProcessorCore.Benchmarks
// <copyright file="Resize.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageProcessorCore.Benchmarks
{
using System.Drawing;
using System.Drawing.Drawing2D;

Loading…
Cancel
Save