mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-04 15:50:10 +01:00
12 lines
175 B
C++
12 lines
175 B
C++
#pragma once
|
|
|
|
namespace shader::ir::exp {
|
|
enum Op {
|
|
EXP = 0,
|
|
|
|
OpCount
|
|
};
|
|
|
|
inline const char *getInstructionName(unsigned) { return "exp"; }
|
|
} // namespace shader::ir::exp
|