xgl: Rename XGL_QUEUE_SEMAPHORE to XGL_SEMAPHORE

bug #13473
header: r29790 (0.63.0)
diff --git a/icd/intel/queue.c b/icd/intel/queue.c
index ae0f91b..0bef4e3 100644
--- a/icd/intel/queue.c
+++ b/icd/intel/queue.c
@@ -393,18 +393,18 @@
     return ret;
 }
 
-ICD_EXPORT XGL_RESULT XGLAPI xglOpenSharedQueueSemaphore(
+ICD_EXPORT XGL_RESULT XGLAPI xglOpenSharedSemaphore(
     XGL_DEVICE                                  device,
-    const XGL_QUEUE_SEMAPHORE_OPEN_INFO*        pOpenInfo,
-    XGL_QUEUE_SEMAPHORE*                        pSemaphore)
+    const XGL_SEMAPHORE_OPEN_INFO*              pOpenInfo,
+    XGL_SEMAPHORE*                              pSemaphore)
 {
     return XGL_ERROR_UNAVAILABLE;
 }
 
-ICD_EXPORT XGL_RESULT XGLAPI xglCreateQueueSemaphore(
+ICD_EXPORT XGL_RESULT XGLAPI xglCreateSemaphore(
     XGL_DEVICE                                  device,
-    const XGL_QUEUE_SEMAPHORE_CREATE_INFO*      pCreateInfo,
-    XGL_QUEUE_SEMAPHORE*                        pSemaphore)
+    const XGL_SEMAPHORE_CREATE_INFO*            pCreateInfo,
+    XGL_SEMAPHORE*                              pSemaphore)
 {
     /*
      * We want to find an unused semaphore register and initialize it.  Signal
@@ -417,16 +417,16 @@
     return XGL_ERROR_UNAVAILABLE;
 }
 
-ICD_EXPORT XGL_RESULT XGLAPI xglSignalQueueSemaphore(
+ICD_EXPORT XGL_RESULT XGLAPI xglQueueSignalSemaphore(
     XGL_QUEUE                                   queue,
-    XGL_QUEUE_SEMAPHORE                         semaphore)
+    XGL_SEMAPHORE                               semaphore)
 {
     return XGL_ERROR_UNAVAILABLE;
 }
 
-ICD_EXPORT XGL_RESULT XGLAPI xglWaitQueueSemaphore(
+ICD_EXPORT XGL_RESULT XGLAPI xglQueueWaitSemaphore(
     XGL_QUEUE                                   queue,
-    XGL_QUEUE_SEMAPHORE                         semaphore)
+    XGL_SEMAPHORE                               semaphore)
 {
     return XGL_ERROR_UNAVAILABLE;
 }