mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
Fix off by one error in immediate state packet size.
This commit is contained in:
parent
32d196820f
commit
4a7fe4fcfa
1 changed files with 1 additions and 1 deletions
|
|
@ -859,7 +859,7 @@ i915_init_packets(struct i915_context *i915)
|
|||
i915->state.Ctx[I915_CTXREG_LI] = (_3DSTATE_LOAD_STATE_IMMEDIATE_1 |
|
||||
I1_LOAD_S(2) |
|
||||
I1_LOAD_S(4) |
|
||||
I1_LOAD_S(5) | I1_LOAD_S(6) | (4));
|
||||
I1_LOAD_S(5) | I1_LOAD_S(6) | (3));
|
||||
i915->state.Ctx[I915_CTXREG_LIS2] = 0;
|
||||
i915->state.Ctx[I915_CTXREG_LIS4] = 0;
|
||||
i915->state.Ctx[I915_CTXREG_LIS5] = 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue