Giter VIP home page Giter VIP logo

glwpfcontrol's Introduction

GLWpfControl - A fast OpenGL Control for WPF

Nuget

A native control for WPF in OpenTK 3.x and 4.x.

Supported configurations:

  • .Net Framework for OpenTK 3.x (the 3.x series NuGet packages)
  • .Net Core for OpenTK 4.x (the 4.x series NuGet packages)

Since version 3.0.0, we're using full OpenGL/DirectX interop via OpenGL extensions - NV_DX_interop. This should run almost everywhere with AMAZING PERFORMANCE and is fully supported on Intel, AMD and Nvidia graphics.

This offers a way more clean solution than embedding GLControl and totally solves the airspace problem. As controls can be layered, nested and structured over your 3D view.

This package is intended to supercede the legacy GLControl completely, and we strongly encourage upgrading to this native WPF control instead.

Getting started:

  1. Install via NuGet

  2. In your window, include GLWpfControl.

        <Window 
            ...
            xmlns:glWpfControl="clr-namespace:OpenTK.Wpf;assembly=GLWpfControl"
            ... >    
  3. Add the control into a container (Grid, StackPanel, etc.) and add a handler method to the render event.

        <Grid>
            ...
            <glWpfControl:GLWpfControl 
                x:Name="OpenTkControl" 
                Render="OpenTkControl_OnRender"/>
            ...
        </Grid>
  4. In the code behind add to the constructor, after the InitializeComponents call, a call to the start method of the GLWpfControl.

    public MainWindow() {
            InitializeComponent();
            // [...]
            var settings = new GLWpfControlSettings
            {
                MajorVersion = 3,
                MinorVersion = 6
            };
            OpenTkControl.Start(settings);
    }
  5. You can now render in the OnRender handler.

    private void OpenTkControl_OnRender(TimeSpan delta) {
        GL.ClearColor(Color4.Blue);
        GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit);
    }

For additional examples, see MainWindow.xaml and MainWindow.xaml.cs in the example project.

Build instructions

  1. Clone repository
    $ git clone https://github.com/varon/GLWpfControl.git
    $ cd GLWpfControl
    or for SSH
    $ git clone [email protected]:varon/GLWpfControl.git
    $ cd GLWpfControl
  2. Run build.cmd or build.sh.
  3. Develop as normal in whatever IDE you like.

Planned features

DX-Hijacking rendering

It's possible to bypass the RTT that takes place in WPF D3dImage by stealing the actual D3d handle from WPF and drawing manually. This is incredibly challenging, but would offer APEX performance as zero indirection is required. Currently more of an idea than a work in progress. Contributions welcome - Drop by the Discord server if you want to give this a shot!

glwpfcontrol's People

Contributors

varon avatar nogginbops avatar marcotod1410 avatar eschryn avatar softwareantics avatar justin113d avatar bezo97 avatar francotiveron avatar 4nonym0us avatar bboldenow avatar utkumaden avatar svabik avatar kaktusbot avatar simi4 avatar itee avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.