diff options
author | David Robillard <d@drobilla.net> | 2019-07-28 14:21:20 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-07-28 19:06:39 +0200 |
commit | 65e0b7d4ea463d1f8eb3231ce9703c9f91c9b270 (patch) | |
tree | 6ab5bb2cd573e5efd77c194a1e098c73b584c135 /pugl/pugl_x11_gl.c | |
parent | ffdc710f20ce8016bf5daeaf97cb75bcb479a22d (diff) | |
download | pugl-65e0b7d4ea463d1f8eb3231ce9703c9f91c9b270.tar.gz pugl-65e0b7d4ea463d1f8eb3231ce9703c9f91c9b270.tar.bz2 pugl-65e0b7d4ea463d1f8eb3231ce9703c9f91c9b270.zip |
Rename getHandle to getContext for consistent terminology
Diffstat (limited to 'pugl/pugl_x11_gl.c')
-rw-r--r-- | pugl/pugl_x11_gl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pugl/pugl_x11_gl.c b/pugl/pugl_x11_gl.c index 66ba213..a4e0f3a 100644 --- a/pugl/pugl_x11_gl.c +++ b/pugl/pugl_x11_gl.c @@ -182,7 +182,7 @@ puglX11GlResize(PuglView* PUGL_UNUSED(view), } static void* -puglX11GlGetHandle(PuglView* PUGL_UNUSED(view)) +puglX11GlGetContext(PuglView* PUGL_UNUSED(view)) { return NULL; } @@ -202,7 +202,7 @@ PuglBackend puglGetX11GlBackend(void) puglX11GlEnter, puglX11GlLeave, puglX11GlResize, - puglX11GlGetHandle + puglX11GlGetContext }; return puglX11GlBackend; |