Mesa (master): vc4: Add missed accounting for the size of the semaphore.

Eric Anholt anholt at kemper.freedesktop.org
Mon Apr 13 17:41:18 UTC 2015


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

Author: Eric Anholt <eric at anholt.net>
Date:   Mon Apr  6 15:15:37 2015 -0700

vc4: Add missed accounting for the size of the semaphore.

This wouldn't have mattered except in the worst case scenario RCL setup.

---

 src/gallium/drivers/vc4/vc4_context.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/gallium/drivers/vc4/vc4_context.c b/src/gallium/drivers/vc4/vc4_context.c
index ed10f7a..1859dd6 100644
--- a/src/gallium/drivers/vc4/vc4_context.c
+++ b/src/gallium/drivers/vc4/vc4_context.c
@@ -118,10 +118,12 @@ vc4_setup_rcl(struct vc4_context *vc4)
         uint32_t tilecoords_size = 3;
         uint32_t branch_size = 5 + reloc_size;
         uint32_t color_store_size = 1;
+        uint32_t semaphore_size = 1;
         cl_ensure_space(&vc4->rcl,
                         clear_size +
                         config_size +
                         loadstore_size +
+                        semaphore_size +
                         xtiles * ytiles * (loadstore_size * 4 +
                                            tilecoords_size * 3 +
                                            branch_size +




More information about the mesa-commit mailing list