aboutsummaryrefslogtreecommitdiffstats
path: root/loadgl.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'loadgl.h.in')
-rw-r--r--loadgl.h.in28
1 files changed, 0 insertions, 28 deletions
diff --git a/loadgl.h.in b/loadgl.h.in
deleted file mode 100644
index e741d5e..0000000
--- a/loadgl.h.in
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com>
- * SPDX-License-Identifier: MIT
- */
-#ifndef LOADGL_H
-#define LOADGL_H
-
-#include "gldefs.h"
-
-typedef void *lgl_loadfunc(const char *name);
-
-enum lgl_status {
- LGL_OK,
- LGL_MISSING,
-};
-
-enum lgl_status lgl_load(lgl_loadfunc *load);
-const char *lgl_strerror(enum lgl_status status);
-const char *gl_strerror(GLenum error);
-
-#define _LGL_INTERFACE(rett, name, func, ...) \
- typedef rett func(__VA_ARGS__); \
- extern func *name;
-#define LGL_INTERFACE(rett, name, ...) _LGL_INTERFACE(rett, name, name##_func, __VA_ARGS__)
-
-INTERFACES()dnl
-
-#endif // LOADGL_H