summaryrefslogtreecommitdiff
path: root/src/glsl/ir_equals.cpp
AgeCommit message (Collapse)AuthorFilesLines
2014-01-21glsl: Add parameter to .equals() to ignore an IR type.Matt Turner1-29/+31
Only implemented for ir_swizzles currently, but perhaps will be useful for other IR types in the future. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2013-11-15glsl: Move the CSE equality functions to the ir class.Eric Anholt1-0/+198
I want to reuse them in opt_algebraic. v2: Merge in Chris Forbes's break fix. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>