GTK Scene Graph Kit

From Wikipedia, the free encyclopedia
GSK
Original author(s)Manuelle Bassi et al.
Developer(s)The GNOME Project
Initial releaseMarch 24, 2017; 7 years ago (2017-03-24)
Written inC
Operating systemPart of GTK
TypeSoftware library
LicenseLGPL
Websitedeveloper.gnome.org/gsk4/unstable/
Simplified software architecture of GTK.
CSS taxonomy.

GTK Scene Graph Kit (GSK) is the rendering and scene graph API for GTK introduced with version 3.90. GSK lies between the graphical control elements (widgets) and the rendering.

Like GDK, GSK is part of GTK and licensed under the GNU Lesser General Public License (LGPL).

Rationale[edit]

GSK is part of GTK. GSK is meant to be used by GTK itself and by GTK-based applications that wish to replace Clutter for their UI. Applications that made use of Clutter instead of using only GTK are e.g. GNOME Shell, GNOME Videos, GNOME Boxes and Cheese.

Any application which makes use of GTK's graphical control elements (widgets), as opposed to those applications getting a GTK window and then drawing themselves on it, benefit from GSK.

Performance[edit]

Drawing graphical control elements (widgets) without a scenegraph leads to rendering things that don't show up on the screen, things that do not need to be rendered; hence it leads to avoidable performance and battery life losses. The scenegraph is used to do hidden surface determination.

Simplicity[edit]

The way widgets were drawn in GTK (when not using Clutter), was, that a draw function (part of GDK hence the name (GIMP "Drawing" Kit)) drew everything. There was no way to know, what has just been drawn. To know where the mouse pointer was currently hovering over, the current position had to be computed. With GSK, it should be fairly easy to write complex graphical control elements (widgets) and still track easily the whereabout of the mouse pointer.

CSS[edit]

It was decided for GTK to move to a Cascading Style Sheet (CSS)-based model for how graphical control elements (widgets) are styled (i.e. themed/skinned) and rendered. In CSS, shadows, borders, padding and style properties have well-defined semantics. Some of those semantics are difficult to implement with the old GTK drawing model.

GSK makes use of graphene,[1] an external library which houses a collection of geometry types — points, sizes, rectangles, vectors, quads, quaternions, matrices. graphene has been ported to the Meson build system.

GSK rendering pipeline[edit]

GSK uses a dual-layer approach:[2]

  1. The lower layer is a simple rendering tree of operations; it can be transformed into appropriate rendering commands with minimal state changes, so it gets transformed into the rendering pipeline. The tree of rendering operations is represented by GskRenderNode instances; an instance of GskRenderer takes the render nodes and submits them (after potentially reordering and transforming them to a more appropriate representation) to the underlying graphic system.
  2. higher layer: a complex set of logical layers; it adds a high level convenience API for application developers.

Rendering APIs[edit]

As of GTK 3.90, which is the development version number of what will become GTK 4, GSK supports rendering using these back-ends:

History[edit]

Clutter[edit]

Clutter was released to the public on June 22, 2006. The integration library "clutter-gtk" has been available since 2006-11-29.[3]

At the 2nd Desktop Summit in August 2011 in Berlin there was quite some talk regarding "GTK+ 4.0 and Clutter 2.0".[4]

Idea to introduce a scene graph to GTK[edit]

In 2008 developers such as Havoc Pennington were considering to add a scene canvas to GTK, as people outside of GTK were making use of things like Clutter, Pigment, HippoCanvas or GooCanvas.[5] It was proposed to make graphical control elements (widgets) one kind of object in a more flexible scene graph.

GSK[edit]

Before GSK, drawing used to be done by GDK - handling basic rendering such as drawing primitives, raster graphics (bitmaps), cursors, fonts, as well as window events and drag-and-drop functionality.[6]

In June 2006 Clutter, an OpenGL-based 'interactive canvas' library, was released. Clutter has its own scene graph, and GNOME developers preferred to use Clutter's scene graph with GTK, facilitated by a library called clutter-gtk.[7] Clutter can be embedded into every GNOME application by using the clutter-gtk library. The clutter-gtk library provides a GtkClutterEmbed GTK widget which can be used to display a ClutterStage.

Some thought went into how to merge Clutter and GTK in a better way than the clutter-gtk library.

In 2011, Firefox introduced "Azure" and Joe Drew and Bas Schouten bothered with some explanations.[8][9][10]

  • At GUADEC2013 in Brno Emmanuele shared his idea on implementing a scene graph and an animation framework inside the GNOME platform (after working for the past 6 years on Clutter).[11]
  • GTK Scene Graph Kit (GSK) is the forthcoming scene graph for GTK in the process of being written by Emanuele Bassi.[12]
  • On 30 July 2014, Emanuelle stated that he thought there shouldn't be a stand-alone Clutter 2.0.[13]

There was a presentation at the 2014 Developer Experience Hackfest regarding a new scene graph for GTK aimed at being merged into GTK+ 3.16.[14] Then GSK was planned to be ready and fully integrated into GTK+ version 3.20, to be released in March 2016. This was postponed to 3.22,[15] and then finally merged into 3.90.

Having OpenGL (or OpenGL ES) support in GDK facilitates a slightly better control of the graphics pipeline; OpenGL is well suited for compositing textured data but totally unsuited for drawing.[citation needed]

The latest information about the status of GSK is from GUADEC 2016.[16]

Other projects[edit]

See also[edit]

References[edit]

  1. ^ Bassi, Emmanuele (2014-05-02). "Graphene".
  2. ^ Bassi, Emmanuele (2016-10-18). "Initial implementation of GSK rendering pipeline".
  3. ^ Bassi, Emmanuele (2006-11-29). "add clutter-gtk".
  4. ^ Bassi, Emmanuele (2011-08-31). "GTK+ 4.0 and Clutter 2.0: rainbows and unicorns".
  5. ^ Pennington, Havoc (2008-03-07). "Havoc Pennington's scene graph proposal".
  6. ^ Bassi, Emmanuele (2014-07-29). "The GTK+ Scene Graph Kit".
  7. ^ "clutter-gtk on git.gnome".
  8. ^ "Introducing the Azure project". 2011-04-26. Archived from the original on 2016-09-08. Retrieved 2017-03-17.
  9. ^ "Comparing Performance: Azure vs Cairo". 2011-06-06.
  10. ^ "Releasing Azure". 2011-08-16.
  11. ^ Bassi, Emmanuele (2013-08-12). "Future in the past GTK scene-graph".
  12. ^ Bassi, Emmanuele (2014-07-29). "The GTK+ Scene Graph Kit".
  13. ^ Bassi, Emmanuele (2014-07-30). "Halting Problem – Future in the Past".
  14. ^ "2014 Developer Experience Hackfest: A scene graph for GTK+ 3.16".
  15. ^ "GNOME Wiki: roadmap for GTK+".
  16. ^ Bassi, Emmanuele (2016-08-16). "GTK: are we in the future, yet?". YouTube.
  17. ^ "Evas".
  18. ^ "Qt Quick Scene Graph".

External links[edit]