Mesa (master): swr/rast: Cache eventmanager

Tim Rowley torowley at kemper.freedesktop.org
Mon Nov 20 20:00:55 UTC 2017


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

Author: Tim Rowley <timothy.o.rowley at intel.com>
Date:   Tue Nov  7 13:50:11 2017 -0600

swr/rast: Cache eventmanager

Reviewed-by: Bruce Cherniak <bruce.cherniak at intel.com>

---

 src/gallium/drivers/swr/rasterizer/archrast/archrast.h | 1 +
 src/gallium/drivers/swr/rasterizer/core/api.cpp        | 5 +++++
 src/gallium/drivers/swr/rasterizer/core/api.h          | 3 +++
 3 files changed, 9 insertions(+)

diff --git a/src/gallium/drivers/swr/rasterizer/archrast/archrast.h b/src/gallium/drivers/swr/rasterizer/archrast/archrast.h
index fa88a4948c..c74d6ad909 100644
--- a/src/gallium/drivers/swr/rasterizer/archrast/archrast.h
+++ b/src/gallium/drivers/swr/rasterizer/archrast/archrast.h
@@ -29,6 +29,7 @@
 
 #include "common/os.h"
 #include "gen_ar_event.hpp"
+#include "eventmanager.h"
 
 namespace ArchRast
 {
diff --git a/src/gallium/drivers/swr/rasterizer/core/api.cpp b/src/gallium/drivers/swr/rasterizer/core/api.cpp
index 20eeb29681..9265440904 100644
--- a/src/gallium/drivers/swr/rasterizer/core/api.cpp
+++ b/src/gallium/drivers/swr/rasterizer/core/api.cpp
@@ -143,6 +143,11 @@ HANDLE SwrCreateContext(
 #endif
     }
 
+#if defined(KNOB_ENABLE_AR)
+    // cache the API thread event manager, for use with sim layer
+    pCreateInfo->hArEventManager = pContext->pArContext[16];
+#endif
+
     // State setup AFTER context is fully initialized
     SetupDefaultState(pContext);
 
diff --git a/src/gallium/drivers/swr/rasterizer/core/api.h b/src/gallium/drivers/swr/rasterizer/core/api.h
index 60f56c6d76..c032b0bb10 100644
--- a/src/gallium/drivers/swr/rasterizer/core/api.h
+++ b/src/gallium/drivers/swr/rasterizer/core/api.h
@@ -213,6 +213,9 @@ struct SWR_CREATECONTEXT_INFO
     // Output: size required memory passed to for SwrSaveState / SwrRestoreState
     size_t  contextSaveSize;
 
+    // ArchRast event manager.
+    HANDLE  hArEventManager;
+
     // Input (optional): Threading info that overrides any set KNOB values.
     SWR_THREADING_INFO* pThreadInfo;
 




More information about the mesa-commit mailing list