Mesa (master): winsys/amdgpu: fix preamble IB size

Marek Olšák mareko at kemper.freedesktop.org
Thu Apr 21 10:15:08 UTC 2016


Module: Mesa
Branch: master
Commit: d4a21a0de073d302b3afb2c8896923e7cbf93b79
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d4a21a0de073d302b3afb2c8896923e7cbf93b79

Author: Thomas Hindoe Paaboel Andersen <phomes at gmail.com>
Date:   Wed Apr 20 22:34:02 2016 +0200

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 <marek.olsak at amd.com>

---

 src/gallium/winsys/amdgpu/drm/amdgpu_cs.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
index 69902c4..bbd29fc 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;




More information about the mesa-commit mailing list