glx-multithread-texture: Avoid front-buffer rendering.
[piglit.git] / tests / util / piglit-util-waffle.h
blob897cfff00cbcf1b8a84a562a3fdd66e0cfc4be56
1 /*
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
13 * Software.
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
21 * IN THE SOFTWARE.
24 /**
25 * \file
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.
32 #pragma once
34 #include <waffle.h>
36 /**
37 * \brief Print the current Waffle error.
39 * The \a func_name is the name of most recently called Waffle function.
41 void
42 wfl_log_error(const char *func_name);
44 /**
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.
49 void
50 wfl_log_debug(const char *func_name);
52 /**
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.
60 void
61 wfl_fatal_error(const char *func_name);
63 static inline void
64 wfl_checked_init(const int32_t *attrib_list)
66 bool ok = waffle_init(attrib_list);
67 if (!ok)
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);
75 if (!dpy)
76 wfl_fatal_error("waffle_display_connect");
77 return dpy;
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);
85 if (!config)
86 wfl_fatal_error("waffle_attrib_list");
87 return config;
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);
95 if (!ctx)
96 wfl_fatal_error("waffle_context_create");
97 return ctx;
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);
105 if (!window)
106 wfl_fatal_error("waffle_window_create");
107 return window;
110 static inline bool
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);
116 if (!ok)
117 wfl_fatal_error("waffle_make_current");
118 return ok;