diff options
author | Matt Turner <[email protected]> | 2014-11-21 15:07:57 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-11-24 14:09:23 -0800 |
commit | 057e6e5251118623242db637dcde4acaef9fed86 (patch) | |
tree | e80cf23abd8e76b4468337d25f9787d8bd68a8ef /src/mesa | |
parent | ff966aff999ceefd61f6e3eee1f1a60b8138d4d8 (diff) |
i965/gen6/gs: Don't declare a src_reg with struct.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp b/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp index d16cc6ed8b7..564b4cb02cc 100644 --- a/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp @@ -632,7 +632,7 @@ gen6_gs_visitor::xfb_write() emit(CMP(dst_null_d(), sol_temp, this->max_svbi, BRW_CONDITIONAL_LE)); emit(IF(BRW_PREDICATE_NORMAL)); { - struct src_reg destination_indices_uw = + src_reg destination_indices_uw = retype(destination_indices, BRW_REGISTER_TYPE_UW); vec4_instruction *inst = emit(MOV(dst_reg(destination_indices_uw), |