diff options
author | Mauro Rossi <[email protected]> | 2020-02-22 16:20:10 +0100 |
---|---|---|
committer | Mauro Rossi <[email protected]> | 2020-03-04 22:25:36 +0100 |
commit | f38ffa4659aa985f5d1c78bdd5be5064b792b819 (patch) | |
tree | 18cc9160e602daf35c0f539f25203296ebd2b98e /src/gallium/drivers/r600 | |
parent | 88c68c0ac7618c56ba17755ea6b93827437dd46a (diff) |
android: r600/sfn: Add GDS instructions
Fixes the following building errors:
external/mesa/src/gallium/drivers/r600/sfn/sfn_emitssboinstruction.cpp:59: error: undefined reference to 'r600::GDSInstr::GDSInstr(r600::ESDOp, r600::GPRVector const&, std::__1::shared_ptr<r600::Value> const&, std::__1::shared_ptr<r600::Value> const&, std::__1::shared_ptr<r600::Value> const&, int)'
...
external/mesa/src/gallium/drivers/r600/sfn/sfn_emitssboinstruction.cpp:256: error: undefined reference to 'r600::RatInstruction::RatInstruction(r600::ECFOpCode, r600::RatInstruction::ERatOp, r600::GPRVector const&, r600::GPRVector const&, int, std::__1::shared_ptr<r600::Value> const&, int, int, int, bool)'
Fixes: 32d3435a ("r600/sfn: Add GDS instructions")
Signed-off-by: Mauro Rossi <[email protected]>
Reviewed-by: Gert Wollny <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/Makefile.sources b/src/gallium/drivers/r600/Makefile.sources index a17997e6eae..03d1bf10161 100644 --- a/src/gallium/drivers/r600/Makefile.sources +++ b/src/gallium/drivers/r600/Makefile.sources @@ -116,6 +116,8 @@ CXX_SOURCES = \ sfn/sfn_instruction_export.h \ sfn/sfn_instruction_fetch.cpp \ sfn/sfn_instruction_fetch.h \ + sfn/sfn_instruction_gds.cpp \ + sfn/sfn_instruction_gds.h \ sfn/sfn_instruction_misc.cpp \ sfn/sfn_instruction_misc.h \ sfn/sfn_instruction_tex.cpp \ |