ARB_ubo/referenced-by-shader: pass if shader compiler moves UBOs between shaders
[piglit.git] / tests / spec / arb_compute_shader / cs-ids-common.h
blob4879e855d0902f87a96731c44bd62618672827c9
1 /*
2 * Copyright (c) 2015 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 /** @file common.h
26 * Common utility functions for the ARB_compute_shader tests.
29 #ifndef __PIGLIT_ARB_COMPUTE_SHADER_COMMON_H__
30 #define __PIGLIT_ARB_COMPUTE_SHADER_COMMON_H__
32 #include "piglit-util-gl.h"
34 void
35 cs_ids_common_init(void);
37 void
38 cs_ids_common_destroy(void);
40 enum piglit_result
41 cs_ids_test_all_sizes(void);
43 void
44 cs_ids_verbose(void);
46 void
47 cs_ids_set_local_id_test(void);
49 void
50 cs_ids_set_global_id_test(void);
52 void
53 cs_ids_use_indirect_dispatch(void);
55 void
56 cs_ids_use_direct_dispatch(void);
58 enum piglit_result
59 cs_ids_set_local_size(uint32_t x, uint32_t y, uint32_t z);
61 enum piglit_result
62 cs_ids_set_global_size(uint32_t x, uint32_t y, uint32_t z);
64 enum piglit_result
65 cs_ids_run_test();
67 void
68 cs_ids_run_test_without_check();
70 void
71 cs_ids_setup_atomics_for_test();
73 enum piglit_result
74 cs_ids_confirm_initial_atomic_counters();
76 enum piglit_result
77 cs_ids_confirm_size();
79 #endif