glx/glxcmdsswap: add missing contextTag byte-swap in __glXDispSwap_CopyContext

Co-Authored-by: Claude Code <noreply@anthropic.com>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/2181>
This commit is contained in:
Peter Hutterer 2026-04-17 12:01:39 +10:00 committed by Marge Bot
parent 982dcd5df4
commit bf6bb8e28f

View file

@ -201,6 +201,7 @@ __glXDispSwap_CopyContext(__GLXclientState * cl, GLbyte * pc)
__GLX_SWAP_INT(&req->source);
__GLX_SWAP_INT(&req->dest);
__GLX_SWAP_INT(&req->mask);
__GLX_SWAP_INT(&req->contextTag);
return __glXDisp_CopyContext(cl, pc);
}