panfrost: Unset vertex_id_zero_based
[mesa.git] / src / panfrost / bifrost / bifrost_compile.h
1 /*
2 * Copyright (C) 2018 Ryan Houdek <Sonicadvance1@gmail.com>
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24 #ifndef __bifrost_compile_h__
25 #define __bifrost_compile_h__
26
27 #include "compiler/nir/nir.h"
28 #include "util/u_dynarray.h"
29
30 struct bifrost_program {
31 struct util_dynarray compiled;
32 };
33
34 int
35 bifrost_compile_shader_nir(nir_shader *nir, struct bifrost_program *program);
36
37 static const nir_shader_compiler_options bifrost_nir_options = {
38 .fuse_ffma = true,
39 .lower_flrp16 = true,
40 .lower_flrp32 = true,
41 .lower_flrp64 = true,
42 .lower_fmod = true,
43 .lower_bitfield_extract = true,
44 .lower_bitfield_extract_to_shifts = true,
45 .lower_bitfield_insert = true,
46 .lower_bitfield_insert_to_shifts = true,
47 .lower_bitfield_reverse = true,
48 .lower_idiv = true,
49 .lower_isign = true,
50 .lower_fsign = true,
51 .lower_ffract = true,
52 .lower_fdph = true,
53 .lower_pack_half_2x16 = true,
54 .lower_pack_unorm_2x16 = true,
55 .lower_pack_snorm_2x16 = true,
56 .lower_pack_unorm_4x8 = true,
57 .lower_pack_snorm_4x8 = true,
58 .lower_unpack_half_2x16 = true,
59 .lower_unpack_unorm_2x16 = true,
60 .lower_unpack_snorm_2x16 = true,
61 .lower_unpack_unorm_4x8 = true,
62 .lower_unpack_snorm_4x8 = true,
63 .lower_extract_byte = true,
64 .lower_extract_word = true,
65 .lower_all_io_to_temps = true,
66 .lower_all_io_to_elements = true,
67 };
68
69 #endif