diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-04 12:56:15 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-04 12:57:20 -0700 |
commit | 603b8fc4b2442c93146f9ec0176a5784d9296c9d (patch) | |
tree | 86034262b05c3dffbbadeec6e87bb6f82c1f9fc1 | |
parent | 384c051b8c7a53aa805836723bd43f2d496303ff (diff) |
Check variable mode when comparing qualifier lists.
Fixes function-05.vert.
-rw-r--r-- | ir.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -460,6 +460,7 @@ ir_function_signature::qualifiers_match(exec_list *params) ir_variable *b = (ir_variable *)iter_b.get(); if (a->read_only != b->read_only || + a->mode != b->mode || a->interpolation != b->interpolation || a->centroid != b->centroid) { |