Code Monkey home page Code Monkey logo

Comments (3)

mattleibow avatar mattleibow commented on May 14, 2024 2

@kekekeks I will be looking into this soon. I have got most of the GPU bits building for all platforms right now. The next step is to get ANGLE for Windows added, then wrap all the necessary types.

As the GPU bits are building already, initial wrapper can be created for OpenGL right now, except the UWP will have to wait for ANGLE. Win32 can have initial GL support until ANGLE arrives - giving it more options for devs.

from skiasharp.

kekekeks avatar kekekeks commented on May 14, 2024

Since opengl-related calls are too platform-specific and complex for the end-user it's better to keep Garesh backend initialization and surface-flipping in the native lib. I also can see that currently your bindings don't have built-in on-screen rendering support and you leave the task of blitting image to screen to the user.

In Perspex we have a concept of a render target that allows to create a rendering session which, when disposed, is flipped back to screen. It may be worth to do the same.

interface IRenderTarget
{
     IRenderingContext CreateContext();
}


interface IRenderingContext : IDisposable
{
      SkCanvas Canvas { get; }
}

To end user it will look like this:

var target = new OSWindowRenderTarget(hWnd/xid/nswindow);
...

using(var ctx = target.CreateContext())
{
     ctx.Canvas.DrawRectangle(...);
}

That render target will manage everything required to initialize ganesh-backend using ANGLE/EGL/GLX/AGLX/whatever or fall back to sw rendering.

Currently we have in Perspex:

iOS render target using GLKView

OS window abstraction with sw/hw rendering switch with backends for

EGL/ANGLE hw-accel backend for Win/Linux/Android

That code provides a simple C++ API:

class RenderingContext
{
public:
    SkCanvas* Canvas;
    virtual ~RenderingContext() {}
};

class RenderTarget
{
public:
    virtual RenderingContext* CreateRenderingContext() = 0;
    virtual ~RenderTarget() {}
};

Code is MIT-licensed and could be easily ported if you agree with the design.

from skiasharp.

mattleibow avatar mattleibow commented on May 14, 2024

@kekekeks Hardware support is here (-ish)
I have started with getting all the bits together and I think it is working quite well. Right now All the platforms should have OpenGL support (DirectX is coming in a few). This means all the platforms, except UWP, can draw with hardware acceleration.

The global issue for hardware / GPU is here: #138
Please leave comments and suggestions so we can get the best product out.

There is also a preview NuGet: https://www.nuget.org/packages/SkiaSharp/1.53.2-gpu1
Please try that out and be sure to comment on how it went - if there are any features needed, just let us know!

from skiasharp.

Related Issues (20)

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.