1 /**************************************************************************
2 *
3 * Copyright 2007 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef TGSI_UTIL_H
29 #define TGSI_UTIL_H
30
31 #include <stdbool.h>
32 #include "pipe/p_shader_tokens.h"
33
34 #if defined __cplusplus
35 extern "C" {
36 #endif
37
38 struct tgsi_src_register;
39 struct tgsi_full_src_register;
40 struct tgsi_full_instruction;
41
42 unsigned
43 tgsi_util_get_src_register_swizzle(const struct tgsi_src_register *reg,
44 unsigned component);
45
46
47 unsigned
48 tgsi_util_get_full_src_register_swizzle(
49 const struct tgsi_full_src_register *reg,
50 unsigned component );
51
52 /* returns the channels of the src_idx src register used by the full instruction. */
53 unsigned
54 tgsi_util_get_inst_usage_mask(const struct tgsi_full_instruction *inst,
55 unsigned src_idx);
56
57 /* Returns the channels of the src_idx src register used by an instruction with
58 * these parameters.
59 */
60 unsigned
61 tgsi_util_get_src_usage_mask(enum tgsi_opcode opcode,
62 unsigned src_idx,
63 uint8_t write_mask,
64 uint8_t swizzle_x,
65 uint8_t swizzle_y,
66 uint8_t swizzle_z,
67 uint8_t swizzle_w,
68 enum tgsi_texture_type tex_target,
69 enum tgsi_texture_type mem_target);
70
71 int
72 tgsi_util_get_texture_coord_dim(enum tgsi_texture_type tgsi_tex);
73
74 int
75 tgsi_util_get_shadow_ref_src_index(enum tgsi_texture_type tgsi_tex);
76
77 bool
78 tgsi_is_shadow_target(enum tgsi_texture_type target);
79
80
81 static inline bool
tgsi_is_msaa_target(enum tgsi_texture_type target)82 tgsi_is_msaa_target(enum tgsi_texture_type target)
83 {
84 return (target == TGSI_TEXTURE_2D_MSAA ||
85 target == TGSI_TEXTURE_2D_ARRAY_MSAA);
86 }
87
88 static inline bool
tgsi_is_array_sampler(enum tgsi_texture_type target)89 tgsi_is_array_sampler(enum tgsi_texture_type target)
90 {
91 return target == TGSI_TEXTURE_1D_ARRAY ||
92 target == TGSI_TEXTURE_SHADOW1D_ARRAY ||
93 target == TGSI_TEXTURE_2D_ARRAY ||
94 target == TGSI_TEXTURE_SHADOW2D_ARRAY ||
95 target == TGSI_TEXTURE_CUBE_ARRAY ||
96 target == TGSI_TEXTURE_SHADOWCUBE_ARRAY ||
97 target == TGSI_TEXTURE_2D_ARRAY_MSAA;
98 }
99
100 #if defined __cplusplus
101 }
102 #endif
103
104 #endif /* TGSI_UTIL_H */
105