summaryrefslogtreecommitdiff
path: root/include/waffle/waffle_gl_misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/waffle/waffle_gl_misc.h')
-rw-r--r--include/waffle/waffle_gl_misc.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/waffle/waffle_gl_misc.h b/include/waffle/waffle_gl_misc.h
index dd7ef3a..71139f2 100644
--- a/include/waffle/waffle_gl_misc.h
+++ b/include/waffle/waffle_gl_misc.h
@@ -23,12 +23,6 @@
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-/// @defgroup waffle_gl_misc waffle_gl_misc
-/// @ingroup waffle_api
-/// @{
-
-/// @file
-
#pragma once
#include <stdbool.h>
@@ -44,32 +38,20 @@ struct waffle_context;
struct waffle_display;
struct waffle_window;
-/// @brief Check if an extension is contained in a GL-style extension string.
-///
-/// The @a extension_string must be in the format returned by
-/// `glGetString(GL_EXTENSIONS)`. Note that this function is not restricted to
-/// the GL extension string; it can also be used on the GLX and EGL extension
-/// strings.
-///
-/// This function may be called before waffle_init().
WAFFLE_API bool
waffle_is_extension_in_string(
const char *restrict extension_string,
const char *restrict extension_name);
-/// @brief Analogous to eglMakeCurrent.
WAFFLE_API bool
waffle_make_current(
struct waffle_display *dpy,
struct waffle_window *window,
struct waffle_context *ctx);
-/// @brief Analogous to eglGetProcAddress.
WAFFLE_API void*
waffle_get_proc_address(const char *name);
#ifdef __cplusplus
} // end extern "C"
#endif
-
-/// @}