mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-08 10:10:00 +00:00
Class is no longer public.
This commit is contained in:
parent
d2270f8eef
commit
f550c71cd3
|
@ -13,7 +13,7 @@ using OpenTK.Platform;
|
|||
|
||||
namespace OpenTK
|
||||
{
|
||||
public class InputDriver : IInputDriver
|
||||
internal class InputDriver : IInputDriver
|
||||
{
|
||||
private IInputDriver inputDriver;
|
||||
|
||||
|
@ -43,7 +43,9 @@ namespace OpenTK
|
|||
break;
|
||||
|
||||
case PlatformID.Unix:
|
||||
inputDriver = new OpenTK.Platform.X11.X11Input(parent.WindowInfo);
|
||||
// TODO: Input is currently handled asychronously by the driver in X11GLNative.
|
||||
//inputDriver = new OpenTK.Platform.X11.X11Input(parent.WindowInfo);
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue