iris: fix constant packet length to match i965

This commit is contained in:
Kenneth Graunke 2018-05-29 07:32:43 -07:00
parent 201a4d923c
commit badefe50a0

View file

@ -2177,8 +2177,11 @@ iris_upload_render_state(struct iris_context *ice,
continue;
struct iris_shader_state *shs = &ice->shaders.state[stage];
struct iris_compiled_shader *shader = ice->shaders.prog[stage];
struct brw_stage_prog_data *prog_data = (void *) shader->prog_data;
// XXX: DIV_ROUND_UP(prog_data->nr_params, 8)?
shs->const_size = DIV_ROUND_UP(cbuf0->buffer_size, 32);
//shs->const_size = DIV_ROUND_UP(cbuf0->buffer_size, 32);
shs->const_size = DIV_ROUND_UP(prog_data->nr_params, 8);
u_upload_data(ice->ctx.const_uploader, 0, 32 * shs->const_size, 32,
cbuf0->user_buffer, &shs->const_offset,
&shs->push_resource);