You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 12, 2023. It is now read-only.
Opcodes 0-127 are for the base protocol requests, so they are static and won't change.
But opcodes 127-255 are for extensions and are dynamically assigned by the X server at startup, so they can't be statically set within the macro syntax or Request trait constant. https://www.x.org/wiki/Development/Documentation/Protocol/OpCodes/
So the macro syntax and the trait definition needs to be adapted to support extensions.
Opcodes 0-127 are for the base protocol requests, so they are static and won't change.
But opcodes 127-255 are for extensions and are dynamically assigned by the X server at startup, so they can't be statically set within the macro syntax or
Requesttrait constant.https://www.x.org/wiki/Development/Documentation/Protocol/OpCodes/
So the macro syntax and the trait definition needs to be adapted to support extensions.