Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Rationale  



1.1  Performance  





1.2  Simplicity  





1.3  CSS  







2 GSK rendering pipeline  



2.1  Rendering APIs  







3 History  



3.1  Clutter  





3.2  Idea to introduce a scene graph to GTK  





3.3  GSK  





3.4  Other projects  







4 See also  





5 References  





6 External links  














GTK Scene Graph Kit







Add links
 









Article
Talk
 

















Read
Edit
View history
 








Tools
   


Actions  



Read
Edit
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Cite this page
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 


GSK
Original author(s)Emmanuele 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, HippoCanvasorGooCanvas.[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]

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 (orOpenGL 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".
  • ^ Bassi, Emmanuele (2016-10-18). "Initial implementation of GSK rendering pipeline".
  • ^ Bassi, Emmanuele (2006-11-29). "add clutter-gtk".
  • ^ Bassi, Emmanuele (2011-08-31). "GTK+ 4.0 and Clutter 2.0: rainbows and unicorns".
  • ^ Pennington, Havoc (2008-03-07). "Havoc Pennington's scene graph proposal".
  • ^ Bassi, Emmanuele (2014-07-29). "The GTK+ Scene Graph Kit".
  • ^ "clutter-gtk on git.gnome".
  • ^ "Introducing the Azure project". 2011-04-26. Archived from the original on 2016-09-08. Retrieved 2017-03-17.
  • ^ "Comparing Performance: Azure vs Cairo". 2011-06-06.
  • ^ "Releasing Azure". 2011-08-16.
  • ^ Bassi, Emmanuele (2013-08-12). "Future in the past GTK scene-graph".
  • ^ Bassi, Emmanuele (2014-07-29). "The GTK+ Scene Graph Kit".
  • ^ Bassi, Emmanuele (2014-07-30). "Halting Problem – Future in the Past".
  • ^ "2014 Developer Experience Hackfest: A scene graph for GTK+ 3.16".
  • ^ "GNOME Wiki: roadmap for GTK+".
  • ^ Bassi, Emmanuele (2016-08-16). "GTK: are we in the future, yet?". YouTube.
  • ^ "Evas".
  • ^ "Qt Quick Scene Graph".
  • External links[edit]


    Retrieved from "https://en.wikipedia.org/w/index.php?title=GTK_Scene_Graph_Kit&oldid=1219733953"

    Categories: 
    Graphics libraries
    GTK
    Hidden categories: 
    Articles to be expanded from March 2017
    All articles to be expanded
    Articles using small message boxes
    All articles with unsourced statements
    Articles with unsourced statements from February 2017
    Webarchive template wayback links
     



    This page was last edited on 19 April 2024, at 14:23 (UTC).

    Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



    Privacy policy

    About Wikipedia

    Disclaimers

    Contact Wikipedia

    Code of Conduct

    Developers

    Statistics

    Cookie statement

    Mobile view



    Wikimedia Foundation
    Powered by MediaWiki