Home
last modified time | relevance | path

Searched refs:has_tex_flag (Results 1 – 3 of 3) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/
Dsfn_instr_test.cpp420 EXPECT_FALSE(tex.has_tex_flag(TexInstr::x_unnormalized)); in TEST_F()
421 EXPECT_FALSE(tex.has_tex_flag(TexInstr::y_unnormalized)); in TEST_F()
422 EXPECT_FALSE(tex.has_tex_flag(TexInstr::z_unnormalized)); in TEST_F()
423 EXPECT_FALSE(tex.has_tex_flag(TexInstr::w_unnormalized)); in TEST_F()
426 EXPECT_TRUE(tex.has_tex_flag(TexInstr::x_unnormalized)); in TEST_F()
427 EXPECT_FALSE(tex.has_tex_flag(TexInstr::y_unnormalized)); in TEST_F()
428 EXPECT_FALSE(tex.has_tex_flag(TexInstr::z_unnormalized)); in TEST_F()
429 EXPECT_FALSE(tex.has_tex_flag(TexInstr::w_unnormalized)); in TEST_F()
432 EXPECT_TRUE(tex.has_tex_flag(TexInstr::x_unnormalized)); in TEST_F()
433 EXPECT_TRUE(tex.has_tex_flag(TexInstr::y_unnormalized)); in TEST_F()
[all …]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_assembler.cpp461 tex.coord_type_x = !tex_instr.has_tex_flag(TexInstr::x_unnormalized); in visit()
462 tex.coord_type_y = !tex_instr.has_tex_flag(TexInstr::y_unnormalized); in visit()
463 tex.coord_type_z = !tex_instr.has_tex_flag(TexInstr::z_unnormalized); in visit()
464 tex.coord_type_w = !tex_instr.has_tex_flag(TexInstr::w_unnormalized); in visit()
479 tex.inst_mod = tex_instr.has_tex_flag(TexInstr::grad_fine) ? 1 : 0; in visit()
Dsfn_instr_tex.h129 bool has_tex_flag(Flags flag) const {return m_tex_flags.test(flag);} in has_tex_flag() function