Browse Source

fix build after merge

af/merge-core
Anton Firszov 8 years ago
parent
commit
38ba1f2dfc
  1. 4
      src/ImageSharp.Drawing/Processing/Text/Processors/DrawTextProcessor.cs

4
src/ImageSharp.Drawing/Processing/Text/Processors/DrawTextProcessor.cs

@ -118,7 +118,7 @@ namespace SixLabors.ImageSharp.Processing.Text.Processors
{
foreach (DrawingOperation operation in operations)
{
IBuffer2D<float> buffer = operation.Map;
Buffer2D<float> buffer = operation.Map;
int startY = operation.Location.Y;
int startX = operation.Location.X;
int offSetSpan = 0;
@ -153,7 +153,7 @@ namespace SixLabors.ImageSharp.Processing.Text.Processors
private struct DrawingOperation
{
public IBuffer2D<float> Map { get; set; }
public Buffer2D<float> Map { get; set; }
public Point Location { get; set; }
}

Loading…
Cancel
Save