mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
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:
parent
3d1a4d1f5b
commit
7da612e8d0
1 changed files with 3 additions and 3 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue