intel: move stubs to the respective source files
diff --git a/icd/intel/queue.h b/icd/intel/queue.h
index 12e36f5..6663a00 100644
--- a/icd/intel/queue.h
+++ b/icd/intel/queue.h
@@ -58,4 +58,30 @@
 XGL_RESULT XGLAPI intelQueueWaitIdle(
     XGL_QUEUE                                   queue);
 
+XGL_RESULT XGLAPI intelQueueSubmit(
+    XGL_QUEUE                                   queue,
+    XGL_UINT                                    cmdBufferCount,
+    const XGL_CMD_BUFFER*                       pCmdBuffers,
+    XGL_UINT                                    memRefCount,
+    const XGL_MEMORY_REF*                       pMemRefs,
+    XGL_FENCE                                   fence);
+
+XGL_RESULT XGLAPI intelOpenSharedQueueSemaphore(
+    XGL_DEVICE                                  device,
+    const XGL_QUEUE_SEMAPHORE_OPEN_INFO*        pOpenInfo,
+    XGL_QUEUE_SEMAPHORE*                        pSemaphore);
+
+XGL_RESULT XGLAPI intelCreateQueueSemaphore(
+    XGL_DEVICE                                  device,
+    const XGL_QUEUE_SEMAPHORE_CREATE_INFO*      pCreateInfo,
+    XGL_QUEUE_SEMAPHORE*                        pSemaphore);
+
+XGL_RESULT XGLAPI intelSignalQueueSemaphore(
+    XGL_QUEUE                                   queue,
+    XGL_QUEUE_SEMAPHORE                         semaphore);
+
+XGL_RESULT XGLAPI intelWaitQueueSemaphore(
+    XGL_QUEUE                                   queue,
+    XGL_QUEUE_SEMAPHORE                         semaphore);
+
 #endif /* QUEUE_H */