Merge branch 'master' into touch-events

This commit is contained in:
Matthew Leibowitz 2017-06-02 21:49:23 -05:00
Родитель f275fb2beb c02beb12b1
Коммит d300e7fdad
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1,4 +1,4 @@
using System;
using System;
using Xamarin.Forms;
namespace SkiaSharp.Views.Forms

Просмотреть файл

@ -1,4 +1,4 @@
using System;
using System;
using Xamarin.Forms;
namespace SkiaSharp.Views.Forms
@ -7,7 +7,7 @@ namespace SkiaSharp.Views.Forms
public class SKGLView : View, ISKGLViewController
{
public static readonly BindableProperty HasRenderLoopProperty =
BindableProperty.Create("HasRenderLoop", typeof(bool), typeof(SKGLView), false);
BindableProperty.Create(nameof(HasRenderLoop), typeof(bool), typeof(SKGLView), false);
public static readonly BindableProperty EnableTouchEventsProperty =
BindableProperty.Create(nameof(EnableTouchEvents), typeof(bool), typeof(SKCanvasView), false);