diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-05-26 16:41:47 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-09 11:14:57 -0700 |
commit | c30f6e5dea7e75983784f3539304c8dd36356d1c (patch) | |
tree | 07f07b0edadac395c0d0b796cdcfe7e8d07db5a4 /ir.h | |
parent | 81377c012cf5db3efe2e39885846c60b6e5c6eb8 (diff) |
Add mappings between ir_texture_opcode and strings.
Diffstat (limited to 'ir.h')
-rw-r--r-- | ir.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -775,6 +775,16 @@ public: /* empty */ } + /** + * Return a string representing the ir_texture_opcode. + */ + const char *opcode_string(); + + /** + * Do a reverse-lookup to translate a string into an ir_texture_opcode. + */ + static ir_texture_opcode get_opcode(const char *); + enum ir_texture_opcode op; /** Sampler to use for the texture access. */ |