From 79def664b8186dce7a2ce34c83c80121e3165485 Mon Sep 17 00:00:00 2001 From: Stefanos A Date: Fri, 4 Oct 2013 09:57:43 +0200 Subject: [PATCH] No separate Factory.Embedded for SDL2 Sdl2Factory supports both desktop and embedded profiles, there is no need to construct a separate Embedded profile. --- Source/OpenTK/Platform/Factory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OpenTK/Platform/Factory.cs b/Source/OpenTK/Platform/Factory.cs index ff0414b0..5eca793a 100644 --- a/Source/OpenTK/Platform/Factory.cs +++ b/Source/OpenTK/Platform/Factory.cs @@ -55,7 +55,7 @@ namespace OpenTK.Platform if (Configuration.Sdl2Supported) { - Embedded = new Egl.EglSdl2PlatformFactory(); + Embedded = Default; } else if (Egl.Egl.IsSupported) {