mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
11 lines
175 B
C++
11 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
|