Man page - waffle_window_get_native(3)
Packages contas this manual
- waffle_x11_egl(3)
- waffle_native_context(3)
- waffle_wayland_config(3)
- waffle_x11_egl_context(3)
- waffle_error_get_info(3)
- waffle_dl_sym(3)
- waffle_glx_window(3)
- waffle_display_connect(3)
- waffle_error_get_code(3)
- waffle_attrib_list_length(3)
- waffle_get_proc_address(3)
- waffle_wayland(3)
- waffle_gbm_config(3)
- waffle_enum(3)
- waffle_dl(3)
- waffle(7)
- waffle_window_destroy(3)
- waffle_context_get_native(3)
- waffle_glx_config(3)
- waffle_x11_egl_window(3)
- waffle_native_display(3)
- waffle_error(3)
- waffle_attrib_list_get_with_default(3)
- waffle_enum_to_string(3)
- waffle_display_get_native(3)
- waffle_teardown(3)
- waffle_wayland_display(3)
- waffle_gbm_window(3)
- waffle_config_choose(3)
- waffle_native_config(3)
- waffle_glx_context(3)
- waffle_window_create(3)
- waffle_wayland_window(3)
- waffle_display_disconnect(3)
- waffle_get_current_display(3)
- waffle_window_show(3)
- waffle_gbm_context(3)
- waffle_feature_test_macros(7)
- waffle_context(3)
- waffle_gbm(3)
- waffle_dl_can_open(3)
- waffle_x11_egl_display(3)
- waffle_window_swap_buffers(3)
- waffle_make_current(3)
- waffle_context_create(3)
- waffle_native(3)
- waffle_display(3)
- waffle_attrib_list(3)
- waffle_attrib_list_update(3)
- waffle_error_to_string(3)
- waffle_window(3)
- waffle_display_supports_context_api(3)
- waffle_wayland_context(3)
- waffle_config(3)
- waffle_is_extension_in_string(3)
- waffle_context_destroy(3)
- waffle_attrib_list_get(3)
- waffle_config_destroy(3)
- waffle_x11_egl_config(3)
- waffle_window_get_native(3)
- waffle_glx_display(3)
- waffle_config_get_native(3)
- waffle_glx(3)
- waffle_gbm_display(3)
- waffle_native_window(3)
- waffle_init(3)
- waffle_get_current_context(3)
- waffle_get_current_window(3)
apt-get install libwaffle-doc
Manual
| WAFFLE_WINDOW(3) | Waffle Manual | WAFFLE_WINDOW(3) |
NAME
waffle_window, waffle_window_create, waffle_window_destroy, waffle_window_show, waffle_window_swap_buffers, waffle_window_get_native - class waffle_window
SYNOPSIS
#include <waffle.h> struct waffle_window;
struct waffle_window* waffle_window_create(struct waffle_window *config, int32_t width, int32_t height);
struct waffle_window* waffle_window_create2(struct waffle_window *config, const intptr_t attrib_list[]);
bool waffle_window_destroy(struct waffle_window *self);
bool waffle_window_show(struct waffle_window *self);
bool waffle_window_swap_buffers(struct waffle_window *self);
union waffle_native_window* waffle_window_get_native(struct waffle_window *self);
DESCRIPTION
struct waffle_window
waffle_window_create()
If the platform allows, the window is not displayed onto the screen after creation. To display the window, call waffle_window_show().
waffle_window_create2()
Create a window with the properties specified by config and attrib_list. attrib_list must specify the window size either with the attributes WAFFLE_WINDOW_WIDTH and WAFFLE_WINDOW_HEIGHT having positive values <= INT32_MAX, or with the attribute WAFFLE_WINDOW_FULLSCREEN equal to true(1).
waffle_window_destroy()
waffle_window_show()
waffle_window_swap_buffers()
waffle_window_get_native()
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 the waffle_window functions.
ISSUES
Please report bugs or and feature requests to https://gitlab.freedesktop.org/mesa/waffle/issues.
SEE ALSO
waffle(7)
AUTHOR
Chad Versace <chad.versace@linux.intel.com>
COPYRIGHT
Copyright © 2013 Intel
This manual page is licensed under the Creative Commons Attribution-ShareAlike 3.0 United States License (CC BY-SA 3.0). To view a copy of this license, visit http://creativecommons.org.license/by-sa/3.0/us.
NOTES
- 1.
- GLX 1.4 Specification
- 2.
- EGL 1.4 Specification
- 3.
- CGL Reference
| 08/09/2024 | waffle |