Make the internal types internal

This commit is contained in:
Matthew Leibowitz 2018-09-28 23:39:34 +02:00
Родитель 35d3f00f55
Коммит eec4fcbee2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3650EBE4AA155AF9
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -3,7 +3,7 @@ using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml.Controls;
using SkiaSharp.Views.UWP;
using SkiaSharp.Views.UWP.Interop;
using EGLDisplay = System.IntPtr;
using EGLContext = System.IntPtr;
@ -12,7 +12,7 @@ using EGLSurface = System.IntPtr;
namespace SkiaSharp.Views.GlesInterop
{
public class GlesContext : IDisposable
internal class GlesContext : IDisposable
{
private EGLDisplay eglDisplay;
private EGLContext eglContext;

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

@ -2,7 +2,7 @@
using Windows.Foundation;
using Windows.Foundation.Collections;
namespace SkiaSharp.Views.UWP
namespace SkiaSharp.Views.UWP.Interop
{
internal static class PropertySetExtensions
{