diff options
| -rw-r--r-- | layers/api_dump.c | 2 | ||||
| -rw-r--r-- | layers/api_file_dump.c | 6 | ||||
| -rw-r--r-- | layers/mem_tracker.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/layers/api_dump.c b/layers/api_dump.c index 40cd497a..421a40c3 100644 --- a/layers/api_dump.c +++ b/layers/api_dump.c @@ -1336,7 +1336,7 @@ XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglWsiX11AssociateConnection(XGL_PHYSICAL_GPU XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglWsiX11GetMSC(XGL_DEVICE device, xcb_window_t window, xcb_randr_crtc_t crtc, XGL_UINT64* pMsc) { XGL_RESULT result = nextTable.WsiX11GetMSC(device, window, crtc, pMsc); - printf("xglWsiX11GetMSC(device = %p, window = %i, crtc = %i, pMsc = %lu) = %s\n", (void*)device, window, crtc, *pMsc, string_XGL_RESULT(result)); + printf("xglWsiX11GetMSC(device = %p, window = %i, crtc = %u, pMsc = %lu) = %s\n", (void*)device, window, crtc, *pMsc, string_XGL_RESULT(result)); return result; } diff --git a/layers/api_file_dump.c b/layers/api_file_dump.c index 8ac75572..e6f2699d 100644 --- a/layers/api_file_dump.c +++ b/layers/api_file_dump.c @@ -1647,11 +1647,11 @@ XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglWsiX11AssociateConnection(XGL_PHYSICAL_GPU return result; } -XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglWsiX11GetMSC(XGL_DEVICE device, xcb_randr_crtc_t crtc, XGL_UINT64* pMsc) +XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglWsiX11GetMSC(XGL_DEVICE device, xcb_window_t window, xcb_randr_crtc_t crtc, XGL_UINT64* pMsc) { - XGL_RESULT result = nextTable.WsiX11GetMSC(device, crtc, pMsc); + XGL_RESULT result = nextTable.WsiX11GetMSC(device, window, crtc, pMsc); pOutFile = fopen(outFileName, "a"); - fprintf(pOutFile, "xglWsiX11GetMSC(device = %p, crtc = %u, pMsc = %lu) = %s\n", (void*)device, crtc, *pMsc, string_XGL_RESULT(result)); + fprintf(pOutFile, "xglWsiX11GetMSC(device = %p, window = %i, crtc = %u, pMsc = %lu) = %s\n", (void*)device, window, crtc, *pMsc, string_XGL_RESULT(result)); fclose(pOutFile); return result; } diff --git a/layers/mem_tracker.c b/layers/mem_tracker.c index 1a0b8af7..1bffdd0c 100644 --- a/layers/mem_tracker.c +++ b/layers/mem_tracker.c @@ -1733,9 +1733,9 @@ XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglWsiX11AssociateConnection(XGL_PHYSICAL_GPU return result; } -XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglWsiX11GetMSC(XGL_DEVICE device, xcb_randr_crtc_t crtc, XGL_UINT64* pMsc) +XGL_LAYER_EXPORT XGL_RESULT XGLAPI xglWsiX11GetMSC(XGL_DEVICE device, xcb_window_t window, xcb_randr_crtc_t crtc, XGL_UINT64* pMsc) { - XGL_RESULT result = nextTable.WsiX11GetMSC(device, crtc, pMsc); + XGL_RESULT result = nextTable.WsiX11GetMSC(device, window, crtc, pMsc); return result; } |
