From d936e3c1828aeb4c8fbca5e3b3e6fb0fe4d2e95c Mon Sep 17 00:00:00 2001 From: Tobin Ehlis Date: Fri, 14 Nov 2014 13:01:02 -0700 Subject: layers: Updated Object Tracker to support callbacks and extensions --- include/xglLayer.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include') diff --git a/include/xglLayer.h b/include/xglLayer.h index 2cfdb162..e369fc25 100644 --- a/include/xglLayer.h +++ b/include/xglLayer.h @@ -269,5 +269,13 @@ typedef struct _XGL_LAYER_DISPATCH_TABLE WsiX11QueuePresentType WsiX11QueuePresent; } XGL_LAYER_DISPATCH_TABLE; +// LL node for tree of dbg callback functions +typedef struct _XGL_LAYER_DBG_FUNCTION_NODE +{ + XGL_DBG_MSG_CALLBACK_FUNCTION pfnMsgCallback; + XGL_VOID *pUserData; + struct _XGL_LAYER_DBG_FUNCTION_NODE *pNext; +} XGL_LAYER_DBG_FUNCTION_NODE; + // ------------------------------------------------------------------------------------------------ // API functions -- cgit v1.2.3