aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJon Ashburn <jon@lunarg.com>2015-03-02 17:12:31 -0700
committerJon Ashburn <jon@lunarg.com>2015-03-02 17:12:31 -0700
commiteeec695ccb24f17fdfd968075dea0fd85d0d0d7e (patch)
tree7cfe6c76a4fa9e9c545ab4f5386dad3837966ab7 /include
parent920a0b628b394c22857c2c2dd6c94d14918139b2 (diff)
downloadusermoji-eeec695ccb24f17fdfd968075dea0fd85d0d0d7e.tar.xz
Revert "misc: Add xglRecordMemoryRange entrypoint and use it in Glave"
This reverts commit fea3e5fc1ef2f3c9e4f06ab5a8d682f89b76377e.
Diffstat (limited to 'include')
-rw-r--r--include/xgl.h8
-rw-r--r--include/xglLayer.h1
2 files changed, 1 insertions, 8 deletions
diff --git a/include/xgl.h b/include/xgl.h
index bdc3c8b0..ec71157e 100644
--- a/include/xgl.h
+++ b/include/xgl.h
@@ -33,7 +33,7 @@
#include "xglPlatform.h"
// XGL API version supported by this file
-#define XGL_API_VERSION XGL_MAKE_VERSION(0, 50, 2)
+#define XGL_API_VERSION XGL_MAKE_VERSION(0, 50, 1)
#ifdef __cplusplus
extern "C"
@@ -2241,7 +2241,6 @@ typedef XGL_RESULT (XGLAPI *xglFreeMemoryType)(XGL_GPU_MEMORY mem);
typedef XGL_RESULT (XGLAPI *xglSetMemoryPriorityType)(XGL_GPU_MEMORY mem, XGL_MEMORY_PRIORITY priority);
typedef XGL_RESULT (XGLAPI *xglMapMemoryType)(XGL_GPU_MEMORY mem, XGL_FLAGS flags, void** ppData);
typedef XGL_RESULT (XGLAPI *xglUnmapMemoryType)(XGL_GPU_MEMORY mem);
-typedef XGL_RESULT (XGLAPI *xglRecordMemoryRangeType)(XGL_GPU_MEMORY mem, XGL_GPU_SIZE rangeSize, XGL_GPU_SIZE rangeOffset);
typedef XGL_RESULT (XGLAPI *xglPinSystemMemoryType)(XGL_DEVICE device, const void* pSysMem, size_t memSize, XGL_GPU_MEMORY* pMem);
typedef XGL_RESULT (XGLAPI *xglGetMultiGpuCompatibilityType)(XGL_PHYSICAL_GPU gpu0, XGL_PHYSICAL_GPU gpu1, XGL_GPU_COMPATIBILITY_INFO* pInfo);
typedef XGL_RESULT (XGLAPI *xglOpenSharedMemoryType)(XGL_DEVICE device, const XGL_MEMORY_OPEN_INFO* pOpenInfo, XGL_GPU_MEMORY* pMem);
@@ -2440,11 +2439,6 @@ XGL_RESULT XGLAPI xglMapMemory(
XGL_RESULT XGLAPI xglUnmapMemory(
XGL_GPU_MEMORY mem);
-XGL_RESULT XGLAPI xglRecordMemoryRange(
- XGL_GPU_MEMORY mem,
- XGL_GPU_SIZE rangeSize,
- XGL_GPU_SIZE rangeOffset);
-
XGL_RESULT XGLAPI xglPinSystemMemory(
XGL_DEVICE device,
const void* pSysMem,
diff --git a/include/xglLayer.h b/include/xglLayer.h
index 8a823ab8..fc192571 100644
--- a/include/xglLayer.h
+++ b/include/xglLayer.h
@@ -48,7 +48,6 @@ typedef struct _XGL_LAYER_DISPATCH_TABLE
xglSetMemoryPriorityType SetMemoryPriority;
xglMapMemoryType MapMemory;
xglUnmapMemoryType UnmapMemory;
- xglRecordMemoryRangeType RecordMemoryRange;
xglPinSystemMemoryType PinSystemMemory;
xglGetMultiGpuCompatibilityType GetMultiGpuCompatibility;
xglOpenSharedMemoryType OpenSharedMemory;