Among all the other things mentioned in the comments, AFAIK this is the rendering engine for https://flutter.io/ too
Skia: an open source 2D graphics library
51–60 of 119 posts
Re: Skia: an open source 2D graphics library
#52Aseprite switched to Skia a year or so ago ( https://github.com/aseprite/aseprite ). Regret it. Google doesn't care to maintain CMake support for it, so there goes pulling it in via source and building as a library dependency. https://github.com/aseprite/aseprite/issues/1598#issuecommen... You may ask, "why don't you just write your own CMake module like everyone else?" I've tried. I think the build system changed a…
Re: Skia: an open source 2D graphics library
#53This looks really useful! Does anyone know how this compares to something like Cairo?
Skia (via SkiaSharp) is the rendering backend for my vector graphics diagramming application ( https://vexlio.com ). I chose it in part because it had much better performance than Cairo when I was testing both. Also the MIT license was more appealing to me than Cairo's LGPL or Mozilla Public License.
But, I do nearly all my work on Linux -- which is a pity because I'd love to try out a tool like Vexlio.
For now I guess I'll continue to stick with yEd, because it actually works everywhere (java works).
Re: Skia: an open source 2D graphics library
#54Earlier quoted context omitted.
Out of curiosity, aside from the obvious disadvantages you mentioned, what advantages does it bring to the table? Long-time casual user of Aseprite. To be honest, I never knew it was open source until just now, I actually own a couple copies.
Allegro, SDL2, SFML, et al. do more things (audio, joystick support, keyboard/mouse events) across platforms. Skia does one thing really well, 2D graphics. There is a ticket open for building an abstraction layer @ https://github.com/aseprite/aseprite/issues/139 In terms of Aseprite: > > But what made it the choice over Allegro 5, SFML, and SDL2? > through all these years I reached to the conclusion that you need ful…
So far, the only library I've used that can properly abstract graphics tablets across platforms is Qt, and in the past it has been sometimes rough around the edges with support for it. I think on Windows it is still using the Wintab32 API and not the newer Windows 8 Ink APIs, for example.
Re: Skia: an open source 2D graphics library
#55Re: Skia: an open source 2D graphics library
#56This looks really useful! Does anyone know how this compares to something like Cairo?
Seems it is faster and has a broader API. I sort of expected that Raph Levien(1) might have contributed or that Cairo would be part of the base of Skia. But apparently not.
(1) works at Google and wrote Cairo
Re: Skia: an open source 2D graphics library
#57Earlier quoted context omitted.
Skia is probably the most popular 2D graphics library at the moment. I don't really know why this got on HN now. It's already extremely popular. I use it in a little WIP game engine. It's very pleasant, excellent little library. There's an online jsfiddle-esque demo here https://fiddle.skia.org/ if you want to try it out.
I have a little 2d game that I'd like to port over to Skia. What did you end up using to handle input and audio and other gamey things?
Re: Skia: an open source 2D graphics library
#58C++ 11, nice. Does anyone use this? And if you do how does it compare to alternatives
Skia is probably the most popular 2D graphics library at the moment. I don't really know why this got on HN now. It's already extremely popular. I use it in a little WIP game engine. It's very pleasant, excellent little library. There's an online jsfiddle-esque demo here https://fiddle.skia.org/ if you want to try it out.
Re: Skia: an open source 2D graphics library
#59With all the fuss with "modern" text editors built on top of web engines, I feel the need to remind you all that one of the fastest graphical code editors that I have ever used — SublimeText — was built using Skia for the rendering. I believe many people have noticed how smooth the interface and most of the operations feel, a very good selling point if you want to build a GUI in the future.
Re: Skia: an open source 2D graphics library
#60This looks really useful! Does anyone know how this compares to something like Cairo?
That's the first question that occurred to me so I web-searched. Seems it is faster and has a broader API. I sort of expected that Raph Levien(1) might have contributed or that Cairo would be part of the base of Skia. But apparently not. (1) works at Google and wrote Cairo