zink: refcount zink_gfx_program objects
[mesa.git] / src / gallium / drivers / iris / iris_genx_protos.h
1 /*
2 * Copyright © 2019 Intel Corporation
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 */
22
23 /* GenX-specific function declarations.
24 *
25 * Don't include this directly, it will be included by iris_context.h.
26 *
27 * NOTE: This header can be included multiple times, from the same file.
28 */
29
30 /* iris_state.c */
31 void genX(init_state)(struct iris_context *ice);
32 void genX(emit_hashing_mode)(struct iris_context *ice,
33 struct iris_batch *batch,
34 unsigned width, unsigned height,
35 unsigned scale);
36 void genX(update_pma_fix)(struct iris_context *ice,
37 struct iris_batch *batch,
38 bool enable);
39
40 void genX(invalidate_aux_map_state)(struct iris_batch *batch);
41
42 /* iris_blorp.c */
43 void genX(init_blorp)(struct iris_context *ice);
44
45 /* iris_query.c */
46 void genX(init_query)(struct iris_context *ice);
47 void genX(math_add32_gpr0)(struct iris_context *ice,
48 struct iris_batch *batch,
49 uint32_t x);
50 void genX(math_div32_gpr0)(struct iris_context *ice,
51 struct iris_batch *batch,
52 uint32_t D);
53