2 * Copyright © 2012 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
26 * \brief Waffle utilities
28 * Each function wfl_checked_*, if the backing Waffle function fails, prints
29 * the error message emitted by Waffle and ends the test.
37 * \brief Print the current Waffle error.
39 * The \a func_name is the name of most recently called Waffle function.
42 wfl_log_error(const char *func_name
);
45 * \brief Print the current Waffle error if PIGLIT_DEBUG=1.
47 * The \a func_name is the name of most recently called Waffle function.
50 wfl_log_debug(const char *func_name
);
53 * \brief Print the current Waffle error and end the test.
55 * The \a func_name is the name of most recently called Waffle function.
57 * If the error is WAFFLE_ERROR_UNSUPPORTED_ON_PLATFORM, skip the test.
58 * Otherwise, fail the test.
61 wfl_fatal_error(const char *func_name
);
64 wfl_checked_init(const int32_t *attrib_list
)
66 bool ok
= waffle_init(attrib_list
);
68 wfl_fatal_error("waffle_init");
71 static inline struct waffle_display
*
72 wfl_checked_display_connect(const char *name
)
74 struct waffle_display
*dpy
= waffle_display_connect(name
);
76 wfl_fatal_error("waffle_display_connect");
80 static inline struct waffle_config
*
81 wfl_checked_config_choose(struct waffle_display
*dpy
,
82 const int32_t *attrib_list
)
84 struct waffle_config
*config
= waffle_config_choose(dpy
, attrib_list
);
86 wfl_fatal_error("waffle_attrib_list");
90 static inline struct waffle_context
*
91 wfl_checked_context_create(struct waffle_config
*config
,
92 struct waffle_context
*shared_ctx
)
94 struct waffle_context
*ctx
= waffle_context_create(config
, NULL
);
96 wfl_fatal_error("waffle_context_create");
100 static inline struct waffle_window
*
101 wfl_checked_window_create(struct waffle_config
*config
,
102 int32_t width
, int32_t height
)
104 struct waffle_window
*window
= waffle_window_create(config
, width
, height
);
106 wfl_fatal_error("waffle_window_create");
111 wfl_checked_make_current(struct waffle_display
*dpy
,
112 struct waffle_window
*window
,
113 struct waffle_context
*ctx
)
115 bool ok
= waffle_make_current(dpy
, window
, ctx
);
117 wfl_fatal_error("waffle_make_current");