Home
last modified time | relevance | path

Searched refs:m_tex_flags (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instr_fetch.cpp115 if (m_tex_flags != rhs.m_tex_flags) in is_equal_to()
225 if (m_tex_flags.test(format_comp_signed)) in do_print()
251 if (m_tex_flags.test(is_mega_fetch) && !m_skip_print.test(mfc)) in do_print()
257 if (m_tex_flags.test(fetch_whole_quad)) os << " WQ"; in do_print()
258 if (m_tex_flags.test(use_const_field)) os << " UCF"; in do_print()
259 if (m_tex_flags.test(srf_mode)) os << " SRF"; in do_print()
260 if (m_tex_flags.test(buf_no_stride)) os << " BNS"; in do_print()
261 if (m_tex_flags.test(alt_const)) os << " AC"; in do_print()
262 if (m_tex_flags.test(use_tc)) os << " TC"; in do_print()
263 if (m_tex_flags.test(vpm)) os << " VPM"; in do_print()
[all …]
Dsfn_instr_fetch.h95 void reset_fetch_flag(EFlags flag) {m_tex_flags.reset(flag);} in reset_fetch_flag()
96 void set_fetch_flag(EFlags flag) {m_tex_flags.set(flag);} in set_fetch_flag()
97 bool has_fetch_flag(EFlags flag) const { return m_tex_flags.test(flag);} in has_fetch_flag()
105 void set_mfc(int mfc) {m_tex_flags.set(is_mega_fetch); m_mega_fetch_count = mfc;} in set_mfc()
146 std::bitset<EFlags::unknown> m_tex_flags; variable
Dsfn_instr_tex.h128 void set_tex_flag(Flags flag) {m_tex_flags.set(flag);} in set_tex_flag()
129 bool has_tex_flag(Flags flag) const {return m_tex_flags.test(flag);} in has_tex_flag()
181 std::bitset<num_tex_flag> m_tex_flags; variable
Dsfn_instr_tex.cpp100 if (m_tex_flags != lhs.m_tex_flags) in is_equal_to()
161 os << (m_tex_flags.test(x_unnormalized) ? "U" : "N"); in do_print()
162 os << (m_tex_flags.test(y_unnormalized) ? "U" : "N"); in do_print()
163 os << (m_tex_flags.test(z_unnormalized) ? "U" : "N"); in do_print()
164 os << (m_tex_flags.test(w_unnormalized) ? "U" : "N"); in do_print()
Dsfn_instr_mem.h81 std::bitset<8> m_tex_flags; variable