Exemplo n.º 1
0
        public FramebufferToplevelImpl(LinuxFramebuffer fb)
        {
            _fb = fb;
            Invalidate(default(Rect));
            var mice = new Mice(ClientSize.Width, ClientSize.Height);

            mice.Start();
            mice.Event += e => Input?.Invoke(e);
        }
Exemplo n.º 2
0
 public LinuxFramebufferLifetime(LinuxFramebuffer fb)
 {
     _fb = fb;
 }
Exemplo n.º 3
0
 LinuxFramebufferPlatform(string fbdev = null)
 {
     _fb = new LinuxFramebuffer(fbdev);
 }