diff options
author | Chia-I Wu <[email protected]> | 2014-09-15 09:00:26 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-09-15 09:00:54 +0800 |
commit | c39377d3fceee9a4996411525088160afd1be795 (patch) | |
tree | ad21dc0646a77cb4733a9af859044cddb6835d61 /src | |
parent | ca29c4c3b0e779909467c0739fc176c64a829142 (diff) |
ilo: fix gen6_3DSTATE_MULTISAMPLE()
There was a typo introduced by 90f4b131fccae3a950864ed9ba15eea8edce915f.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_builder_3d_bottom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/ilo/ilo_builder_3d_bottom.h b/src/gallium/drivers/ilo/ilo_builder_3d_bottom.h index 6427228a64c..4d68acd7253 100644 --- a/src/gallium/drivers/ilo/ilo_builder_3d_bottom.h +++ b/src/gallium/drivers/ilo/ilo_builder_3d_bottom.h @@ -566,7 +566,7 @@ gen6_3DSTATE_MULTISAMPLE(struct ilo_builder *builder, dw[1] = dw1; dw[2] = dw2; if (ilo_dev_gen(builder->dev) >= ILO_GEN(7)) - dw[2] = dw3; + dw[3] = dw3; } static inline void |