diff options
| author | Tobin Ehlis <tobin@lunarg.com> | 2014-11-14 13:01:02 -0700 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2014-11-21 16:49:40 -0700 |
| commit | d936e3c1828aeb4c8fbca5e3b3e6fb0fe4d2e95c (patch) | |
| tree | 2fe9301e36126bf279201542d1d76c4e4a8fcf06 /include | |
| parent | 994fc4727631edecf4b31ffd4f358fc34bff88a3 (diff) | |
| download | usermoji-d936e3c1828aeb4c8fbca5e3b3e6fb0fe4d2e95c.tar.xz | |
layers: Updated Object Tracker to support callbacks and extensions
Diffstat (limited to 'include')
| -rw-r--r-- | include/xglLayer.h | 8 |
1 files changed, 8 insertions, 0 deletions
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 |
