From: Eric Anholt Date: Fri, 8 Jun 2018 15:35:50 +0000 (-0700) Subject: v3d: Use the right size for v3d 4.x TEXTURE_SHADER_STATE BO. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9080642449233b3421c2d140f75a3924277b7335;p=mesa.git v3d: Use the right size for v3d 4.x TEXTURE_SHADER_STATE BO. This doesn't really matter, since they both get rounded up to 4096. --- diff --git a/src/gallium/drivers/v3d/v3dx_state.c b/src/gallium/drivers/v3d/v3dx_state.c index 26bd06e4df7..22a0ba92a00 100644 --- a/src/gallium/drivers/v3d/v3dx_state.c +++ b/src/gallium/drivers/v3d/v3dx_state.c @@ -697,8 +697,8 @@ v3d_create_sampler_view(struct pipe_context *pctx, struct pipe_resource *prsc, int msaa_scale = prsc->nr_samples > 1 ? 2 : 1; #if V3D_VERSION >= 40 - so->bo = v3d_bo_alloc(v3d->screen, cl_packet_length(SAMPLER_STATE), - "sampler"); + so->bo = v3d_bo_alloc(v3d->screen, + cl_packet_length(TEXTURE_SHADER_STATE), "sampler"); void *map = v3d_bo_map(so->bo); v3dx_pack(map, TEXTURE_SHADER_STATE, tex) {