diff options
author | Gert Wollny <[email protected]> | 2018-03-26 02:17:00 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-03-26 09:04:53 -0600 |
commit | a21da49e5c55f8e61253503d865cef936125ea5f (patch) | |
tree | f337e6b2627e7a3e490effbbc9a73218ea3d8b2f | |
parent | 1e36fe5dc490ed64736591acbcd32876ea1a69dd (diff) |
mesa/st/tests: Use tgsi opcode enum also in the test classes
Fixes: ec478cf9c31K ("st/mesa,tgsi: use enum tgsi_opcode")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105737
Signed-off-by: Gert Wollny <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
-rw-r--r-- | src/mesa/state_tracker/tests/st_tests_common.cpp | 6 | ||||
-rw-r--r-- | src/mesa/state_tracker/tests/st_tests_common.h | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/state_tracker/tests/st_tests_common.cpp b/src/mesa/state_tracker/tests/st_tests_common.cpp index ea01ca5555f..63e3d6b2c41 100644 --- a/src/mesa/state_tracker/tests/st_tests_common.cpp +++ b/src/mesa/state_tracker/tests/st_tests_common.cpp @@ -43,7 +43,7 @@ using std::tuple; /* Implementation of helper and test classes */ void *FakeCodeline::mem_ctx = nullptr; -FakeCodeline::FakeCodeline(unsigned _op, const vector<int>& _dst, +FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<int>& _dst, const vector<int>& _src, const vector<int>&_to): op(_op), max_temp_id(0) @@ -59,7 +59,7 @@ FakeCodeline::FakeCodeline(unsigned _op, const vector<int>& _dst, } -FakeCodeline::FakeCodeline(unsigned _op, const vector<pair<int,int>>& _dst, +FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<pair<int,int>>& _dst, const vector<pair<int, const char *>>& _src, const vector<pair<int, const char *>>&_to, SWZ with_swizzle): @@ -84,7 +84,7 @@ FakeCodeline::FakeCodeline(unsigned _op, const vector<pair<int,int>>& _dst, }); } -FakeCodeline::FakeCodeline(unsigned _op, const vector<tuple<int,int,int>>& _dst, +FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<tuple<int,int,int>>& _dst, const vector<tuple<int,int,int>>& _src, const vector<tuple<int,int,int>>&_to, RA with_reladdr): op(_op), diff --git a/src/mesa/state_tracker/tests/st_tests_common.h b/src/mesa/state_tracker/tests/st_tests_common.h index 2e188329231..6d855fe5811 100644 --- a/src/mesa/state_tracker/tests/st_tests_common.h +++ b/src/mesa/state_tracker/tests/st_tests_common.h @@ -40,15 +40,15 @@ struct RA {}; /* A line to describe a TGSI instruction for building mock shaders. */ struct FakeCodeline { - FakeCodeline(unsigned _op): op(_op), max_temp_id(0) {} - FakeCodeline(unsigned _op, const std::vector<int>& _dst, const std::vector<int>& _src, + FakeCodeline(tgsi_opcode _op): op(_op), max_temp_id(0) {} + FakeCodeline(tgsi_opcode _op, const std::vector<int>& _dst, const std::vector<int>& _src, const std::vector<int>&_to); - FakeCodeline(unsigned _op, const std::vector<std::pair<int,int>>& _dst, + FakeCodeline(tgsi_opcode _op, const std::vector<std::pair<int,int>>& _dst, const std::vector<std::pair<int, const char *>>& _src, const std::vector<std::pair<int, const char *>>&_to, SWZ with_swizzle); - FakeCodeline(unsigned _op, const std::vector<std::tuple<int,int,int>>& _dst, + FakeCodeline(tgsi_opcode _op, const std::vector<std::tuple<int,int,int>>& _dst, const std::vector<std::tuple<int,int,int>>& _src, const std::vector<std::tuple<int,int,int>>&_to, RA with_reladdr); @@ -78,7 +78,7 @@ private: template <typename st_reg> void read_reg(const st_reg& s); - unsigned op; + tgsi_opcode op; std::vector<st_dst_reg> dst; std::vector<st_src_reg> src; std::vector<st_src_reg> tex_offsets; |