Skip to content

Commit

Permalink
Update libepoxy to 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dscharrer committed Oct 14, 2018
1 parent 99a4dd4 commit a9d1a8e
Show file tree
Hide file tree
Showing 6 changed files with 261 additions and 21 deletions.
7 changes: 7 additions & 0 deletions libs/libepoxy/include/epoxy/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,11 @@ typedef unsigned char bool;
# include <stdbool.h>
#endif

EPOXY_BEGIN_DECLS

EPOXY_PUBLIC bool epoxy_extension_in_string(const char *extension_list,
const char *ext);

EPOXY_END_DECLS

#endif /* EPOXY_COMMON_H */
15 changes: 15 additions & 0 deletions libs/libepoxy/include/epoxy/gl.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,21 @@ EPOXY_BEGIN_DECLS
EPOXY_PUBLIC bool epoxy_has_gl_extension(const char *extension);
EPOXY_PUBLIC bool epoxy_is_desktop_gl(void);
EPOXY_PUBLIC int epoxy_gl_version(void);
EPOXY_PUBLIC int epoxy_glsl_version(void);

/*
* the type of the stub function that the failure handler must return;
* this function will be called on subsequent calls to the same bogus
* function name
*/
typedef void (*epoxy_resolver_stub_t)(void);

/* the type of the failure handler itself */
typedef epoxy_resolver_stub_t
(*epoxy_resolver_failure_handler_t)(const char *name);

EPOXY_PUBLIC epoxy_resolver_failure_handler_t
epoxy_set_resolver_failure_handler(epoxy_resolver_failure_handler_t handler);

EPOXY_END_DECLS

Expand Down
Loading

0 comments on commit a9d1a8e

Please sign in to comment.