summaryrefslogtreecommitdiff
path: root/gdk/gdkinternals.h
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2016-10-17 10:42:48 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2016-10-17 10:44:27 +0100
commit07cd87eb9ce805f131f77cb4ffba752461df5740 (patch)
tree02c085189e474590514483be9c9de4ba7689e5ff /gdk/gdkinternals.h
parent95b9981a875d1574c70a73fe173769697c5084d6 (diff)
downloadgtk+-07cd87eb9ce805f131f77cb4ffba752461df5740.tar.gz
gdk: Remove mentions of gdk_cairo_create()
This function does not exist any more.
Diffstat (limited to 'gdk/gdkinternals.h')
-rw-r--r--gdk/gdkinternals.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/gdkinternals.h b/gdk/gdkinternals.h
index 03e49b6cec..ad59f76777 100644
--- a/gdk/gdkinternals.h
+++ b/gdk/gdkinternals.h
@@ -183,7 +183,7 @@ struct _GdkWindow
* sized the same as the update region and set `surface_needs_composite`
* to TRUE. Otherwise, we paint directly onto the real server-side window.
*
- * 2) Things paint with cairo using gdk_cairo_create().
+ * 2) Things paint with cairo using GdkDrawingContext
*
* 3) When everything is painted, the user calls gdk_window_end_paint().
* If there was a temporary surface, this is composited back onto the
@@ -199,7 +199,7 @@ struct _GdkWindow
* before. We always redirect cairo drawing to a temporary surface when
* GL is enabled.
*
- * 2) Things paint with cairo using gdk_cairo_create(). Whenever
+ * 2) Things paint with cairo using GdkDrawingContext. Whenever
* something paints, it calls gdk_window_mark_paint_from_clip() to mark
* which regions it has painted in software. We'll learn what this does
* soon.