summaryrefslogtreecommitdiff
path: root/gdk/gdkglcontextprivate.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2014-10-27 16:33:37 +0100
committerAlexander Larsson <alexl@redhat.com>2014-10-27 16:33:37 +0100
commit3013997e234d86dcdaa212c50d4b263c44a7c416 (patch)
tree584ae883d2b16cbe0f8ba87716d9024a78557454 /gdk/gdkglcontextprivate.h
parentf1fe70e4adfa468c081bfb9d1d57364ef02496d8 (diff)
downloadgtk+-3013997e234d86dcdaa212c50d4b263c44a7c416.tar.gz
Rename gdk_gl_context_flush_buffer to gdk_gl_context_end_frame
This makes a lot more sense.
Diffstat (limited to 'gdk/gdkglcontextprivate.h')
-rw-r--r--gdk/gdkglcontextprivate.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gdk/gdkglcontextprivate.h b/gdk/gdkglcontextprivate.h
index b973eb2af9..96d4924613 100644
--- a/gdk/gdkglcontextprivate.h
+++ b/gdk/gdkglcontextprivate.h
@@ -41,17 +41,17 @@ struct _GdkGLContextClass
GObjectClass parent_class;
void (* update) (GdkGLContext *context);
- void (* flush_buffer) (GdkGLContext *context,
- cairo_region_t *painted,
- cairo_region_t *damage);
+ void (* end_frame) (GdkGLContext *context,
+ cairo_region_t *painted,
+ cairo_region_t *damage);
gboolean (* texture_from_surface) (GdkGLContext *context,
- cairo_surface_t *surface,
- cairo_region_t *region);
+ cairo_surface_t *surface,
+ cairo_region_t *region);
};
-void gdk_gl_context_flush_buffer (GdkGLContext *context,
- cairo_region_t *painted,
- cairo_region_t *damage);
+void gdk_gl_context_end_frame (GdkGLContext *context,
+ cairo_region_t *painted,
+ cairo_region_t *damage);
G_END_DECLS