shader: Implement LOP and LOP3
This commit is contained in:
parent
382cba94ed
commit
980cafdc27
8 changed files with 227 additions and 31 deletions
|
@ -28,6 +28,13 @@ enum class BooleanOp : u64 {
|
|||
XOR,
|
||||
};
|
||||
|
||||
enum class PredicateOp : u64 {
|
||||
False,
|
||||
True,
|
||||
Zero,
|
||||
NonZero,
|
||||
};
|
||||
|
||||
class TranslatorVisitor {
|
||||
public:
|
||||
explicit TranslatorVisitor(Environment& env_, IR::Block& block) : env{env_}, ir(block) {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue