summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKyle Brenneman <kbrenneman@nvidia.com>2016-02-29 11:11:26 -0700
committerKyle Brenneman <kbrenneman@nvidia.com>2016-02-29 13:50:39 -0700
commitba1c58a558f2df4c9abfb69cbeb027f9128f22ad (patch)
treee81c4e46b930a64eae03e61f6c94936191c5d3df /include
parent88807b95b9d119b8812446ae8a1fc585f9770e94 (diff)
Rename a couple of functions in the ABI's.
Renamed __GLdispatchPatchCallbacks::checkPatchSupported to isPatchSupported, and renamed __GLXapiImports::checkSupportsScreen to isScreenSupported.
Diffstat (limited to 'include')
-rw-r--r--include/glvnd/GLdispatchABI.h2
-rw-r--r--include/glvnd/libglxabi.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/glvnd/GLdispatchABI.h b/include/glvnd/GLdispatchABI.h
index ab70361..d0fea5e 100644
--- a/include/glvnd/GLdispatchABI.h
+++ b/include/glvnd/GLdispatchABI.h
@@ -98,7 +98,7 @@ typedef struct __GLdispatchPatchCallbacksRec {
* \param lookupStubOffset A callback into libglvnd to look up the address
* of each entrypoint.
*/
- GLboolean (* checkPatchSupported)(int type, int stubSize);
+ GLboolean (* isPatchSupported)(int type, int stubSize);
/*!
* Called by libglvnd to request that a vendor library patch its top-level
diff --git a/include/glvnd/libglxabi.h b/include/glvnd/libglxabi.h
index 4d25b24..93806e6 100644
--- a/include/glvnd/libglxabi.h
+++ b/include/glvnd/libglxabi.h
@@ -229,7 +229,7 @@ typedef struct __GLXapiImportsRec {
* \param screen The screen number.
* \return True if the vendor library can support this screen.
*/
- Bool (* checkSupportsScreen) (Display *dpy, int screen);
+ Bool (* isScreenSupported) (Display *dpy, int screen);
/*!
* This retrieves the pointer to the real GLX or core GL function.