summaryrefslogtreecommitdiff
path: root/include/epoxy/gl.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/epoxy/gl.h')
-rw-r--r--include/epoxy/gl.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/epoxy/gl.h b/include/epoxy/gl.h
index 82e143f..8e0d2d1 100644
--- a/include/epoxy/gl.h
+++ b/include/epoxy/gl.h
@@ -23,15 +23,8 @@
/** @file gl.h
*
- * Provides an implementation of a GL dispatch layer using a hidden
- * vtable.
- *
- * This is a lower performance path than ifuncs when they are
- * available, but it is required if you might have multiple return
- * values for GetProcAddress/dlsym()ed functions. That is the case if
- * you're using WGL (which can return different function pointers per
- * context), or if you dlclose() and re-dlopen() libGL (which means
- * you'll get different dynamically allocated dispatch stubs).
+ * Provides an implementation of a GL dispatch layer using either
+ * global function pointers or a hidden vtable.
*/
#ifndef __EPOXY_GL_H