aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJon Ashburn <jon@lunarg.com>2015-01-29 16:54:38 -0700
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-02-04 17:58:10 -0700
commit3fd4b119176c5c166c44012b5e09fccb9c637157 (patch)
treebe9226e71939fa4d167564c0950fdb435d08028f /include
parent40a0fdaf0b3c146fd3d3dab4e0a499bbfa2bb3ba (diff)
downloadusermoji-3fd4b119176c5c166c44012b5e09fccb9c637157.tar.xz
instance: Remove xglInitAndEnumerateGpus
Diffstat (limited to 'include')
-rw-r--r--include/xgl.h8
-rw-r--r--include/xglLayer.h1
2 files changed, 0 insertions, 9 deletions
diff --git a/include/xgl.h b/include/xgl.h
index 4d4a8c53..d67b4422 100644
--- a/include/xgl.h
+++ b/include/xgl.h
@@ -2241,7 +2241,6 @@ typedef struct _XGL_DISPATCH_INDIRECT_CMD
// ------------------------------------------------------------------------------------------------
// API functions
-typedef XGL_RESULT (XGLAPI *xglInitAndEnumerateGpusType)(const XGL_APPLICATION_INFO* pAppInfo, const XGL_ALLOC_CALLBACKS* pAllocCb, uint32_t maxGpus, uint32_t* pGpuCount, XGL_PHYSICAL_GPU* pGpus);
typedef XGL_RESULT (XGLAPI *xglCreateInstanceType)(const XGL_APPLICATION_INFO* pAppInfo, const XGL_ALLOC_CALLBACKS* pAllocCb, XGL_INSTANCE* pInstance);
typedef XGL_RESULT (XGLAPI *xglDestroyInstanceType)(XGL_INSTANCE instance);
typedef XGL_RESULT (XGLAPI *xglEnumerateGpusType)(XGL_INSTANCE instance, uint32_t maxGpus, uint32_t* pGpuCount, XGL_PHYSICAL_GPU* pGpus);
@@ -2358,13 +2357,6 @@ typedef XGL_RESULT (XGLAPI *xglCreateRenderPassType)(XGL_DEVICE device, const XG
// GPU initialization
-XGL_RESULT XGLAPI xglInitAndEnumerateGpus(
- const XGL_APPLICATION_INFO* pAppInfo,
- const XGL_ALLOC_CALLBACKS* pAllocCb,
- uint32_t maxGpus,
- uint32_t* pGpuCount,
- XGL_PHYSICAL_GPU* pGpus);
-
XGL_RESULT XGLAPI xglCreateInstance(
const XGL_APPLICATION_INFO* pAppInfo,
const XGL_ALLOC_CALLBACKS* pAllocCb,
diff --git a/include/xglLayer.h b/include/xglLayer.h
index 5fb8e8c2..a229b2cf 100644
--- a/include/xglLayer.h
+++ b/include/xglLayer.h
@@ -26,7 +26,6 @@ typedef struct _XGL_BASE_LAYER_OBJECT
typedef struct _XGL_LAYER_DISPATCH_TABLE
{
xglGetProcAddrType GetProcAddr;
- xglInitAndEnumerateGpusType InitAndEnumerateGpus;
xglCreateInstanceType CreateInstance;
xglDestroyInstanceType DestroyInstance;
xglEnumerateGpusType EnumerateGpus;