diff options
author | Kenneth Graunke <[email protected]> | 2020-04-28 14:04:58 -0700 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-29 06:50:54 +0000 |
commit | 506414e837da4b806c6fba1fdb4fe9efedbed94a (patch) | |
tree | 63f184e02d7f2a0033d7af61a805f493417c65f6 | |
parent | 5e2a7e11b460adab4555d3d16a49968fc5542441 (diff) |
iris: Fix downcast of bound_vertex_buffers from uint64_t to int
This is the wrong data type, the original field - and the values we're
adding in - are both 64-bit unsigned. Keep the original data type.
Thanks to Dave Airlie for finding this while reading the code.
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4802>
-rw-r--r-- | src/gallium/drivers/iris/iris_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_state.c b/src/gallium/drivers/iris/iris_state.c index d708f6a45bc..30fbd59c15e 100644 --- a/src/gallium/drivers/iris/iris_state.c +++ b/src/gallium/drivers/iris/iris_state.c @@ -5988,7 +5988,7 @@ iris_upload_dirty_render_state(struct iris_context *ice, if (dirty & IRIS_DIRTY_VERTEX_BUFFERS) { int count = util_bitcount64(ice->state.bound_vertex_buffers); - int dynamic_bound = ice->state.bound_vertex_buffers; + uint64_t dynamic_bound = ice->state.bound_vertex_buffers; if (ice->state.vs_uses_draw_params) { assert(ice->draw.draw_params.res); |