From: Thomas Hindoe Paaboel Andersen Date: Wed, 20 Apr 2016 20:34:02 +0000 (+0200) Subject: winsys/amdgpu: fix preamble IB size X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d4a21a0de073d302b3afb2c8896923e7cbf93b79;p=mesa.git winsys/amdgpu: fix preamble IB size The missing break caused the IB size to be overwritten with the size of IB_CONST. This was introduced in: 7201230582e060aa2eb79c825d3188b437ef7bb8 Signed-off-by: Marek Olšák --- diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c index 69902c45e65..bbd29fc836c 100644 --- a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c +++ b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c @@ -211,6 +211,7 @@ static bool amdgpu_get_new_ib(struct radeon_winsys *ws, struct amdgpu_ib *ib, case IB_CONST_PREAMBLE: buffer_size = 4 * 1024 * 4; ib_size = 1024 * 4; + break; case IB_CONST: buffer_size = 512 * 1024 * 4; ib_size = 128 * 1024 * 4;