table of contents
| WAFFLE_MAKE_CURRENT(3) | Waffle Manual | WAFFLE_MAKE_CURRENT(3) |
NAME¶
waffle_make_current - Bind a context for renderingSYNOPSIS¶
#include <waffle.h>
bool
waffle_make_current(struct waffle_display *display,
struct waffle_window *window,
struct waffle_context *context);
DESCRIPTION¶
waffle_make_current()Bind the given window and context for
rendering on the current thread. window and context must both
have been created on the given display. To unbind the current context
without binding a new one, set window and context to
NULL.
This function is analogous to glXMakeCurrent(3),
eglMakeCurrent(3), and [NSOpenGLContext
makeCurrentContext].
RETURN VALUE¶
Functions whose return type is bool return true on success and false on failure. Functions whose return type is a pointer return NULL on failure. Use waffle_error_get_info(3) to get information about any errors.ERRORS¶
See waffle_error(3) for the complete list of waffle's error codes. No errors are specific to any functions listed in this manual page.ISSUES¶
Please report bugs or and feature requests to https://github.com/waffle-gl/waffle/issues.SEE ALSO¶
waffle(7)AUTHOR¶
Chad Versace <chad.versace@linux.intel.com>Maintainer
COPYRIGHT¶
Copyright © 2013 Intel| 09/25/2014 | waffle |