i965: Drop sizeof(struct brw_sampler_state) from estimated prim size.
This is the last user of the structure.
v2: Use a local variable with a sensible name so people know what 16 is.
(Suggested by Topi Pohjolainen).
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
@@ -442,11 +442,11 @@ static bool brw_try_draw_prims( struct gl_context *ctx,
|
||||
|
||||
for (i = 0; i < nr_prims; i++) {
|
||||
int estimated_max_prim_size;
|
||||
const int sampler_state_size = 16;
|
||||
|
||||
estimated_max_prim_size = 512; /* batchbuffer commands */
|
||||
estimated_max_prim_size += (BRW_MAX_TEX_UNIT *
|
||||
(sizeof(struct brw_sampler_state) +
|
||||
sizeof(struct gen5_sampler_default_color)));
|
||||
estimated_max_prim_size += BRW_MAX_TEX_UNIT *
|
||||
(sampler_state_size + sizeof(struct gen5_sampler_default_color));
|
||||
estimated_max_prim_size += 1024; /* gen6 VS push constants */
|
||||
estimated_max_prim_size += 1024; /* gen6 WM push constants */
|
||||
estimated_max_prim_size += 512; /* misc. pad */
|
||||
|
||||
Reference in New Issue
Block a user