Skip to content
This repository has been archived by the owner on Mar 30, 2019. It is now read-only.

Commit

Permalink
[Samples] Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Apr 9, 2013
1 parent ec5d082 commit d28e6a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Samples/Win8/CommonDX/SurfaceImageSourceTarget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class SurfaceImageSourceTarget : TargetBase
private SurfaceImageSource surfaceImageSource;
private ISurfaceImageSourceNative surfaceImageSourceNative;
private readonly SurfaceViewData[] viewDatas = new SurfaceViewData[2];
private DrawingPoint position;
private SharpDX.Point position;
private int nextViewDataIndex;

/// <summary>
Expand Down Expand Up @@ -89,7 +89,7 @@ protected override Windows.Foundation.Rect CurrentControlBounds
/// <summary>
/// Gets the relative position to use to draw on the surface.
/// </summary>
public DrawingPoint DrawingPosition { get { return position; } }
public SharpDX.Point DrawingPosition { get { return position; } }

/// <inveritdoc/>
public override void RenderAll()
Expand Down

0 comments on commit d28e6a1

Please sign in to comment.