intel: implement fence functions
diff --git a/icd/intel/dispatch_tables.c b/icd/intel/dispatch_tables.c
index ebebfe1..c2e1a21 100644
--- a/icd/intel/dispatch_tables.c
+++ b/icd/intel/dispatch_tables.c
@@ -24,6 +24,7 @@
#include "icd.h"
#include "dev.h"
+#include "fence.h"
#include "gpu.h"
#include "mem.h"
#include "obj.h"
@@ -103,30 +104,6 @@
return XGL_ERROR_UNAVAILABLE;
}
-static XGL_RESULT XGLAPI intelCreateFence(
- XGL_DEVICE device,
- const XGL_FENCE_CREATE_INFO* pCreateInfo,
- XGL_FENCE* pFence)
-{
- return XGL_ERROR_UNAVAILABLE;
-}
-
-static XGL_RESULT XGLAPI intelGetFenceStatus(
- XGL_FENCE fence)
-{
- return XGL_ERROR_UNAVAILABLE;
-}
-
-static XGL_RESULT XGLAPI intelWaitForFences(
- XGL_DEVICE device,
- XGL_UINT fenceCount,
- const XGL_FENCE* pFences,
- XGL_BOOL waitAll,
- XGL_UINT64 timeout)
-{
- return XGL_ERROR_UNAVAILABLE;
-}
-
static XGL_RESULT XGLAPI intelCreateQueueSemaphore(
XGL_DEVICE device,
const XGL_QUEUE_SEMAPHORE_CREATE_INFO* pCreateInfo,