pseudoramiX: drop swapping request length fields
The request struct's length fields aren't used anymore - we have the client->req_len field instead, which also is bigreq-compatible. Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1639>
This commit is contained in:
parent
b4df6f1fe3
commit
4454b71f4b
|
@ -407,7 +407,6 @@ SProcPseudoramiXQueryVersion(ClientPtr client)
|
|||
|
||||
TRACE;
|
||||
|
||||
swaps(&stuff->length);
|
||||
REQUEST_SIZE_MATCH(xPanoramiXQueryVersionReq);
|
||||
return ProcPseudoramiXQueryVersion(client);
|
||||
}
|
||||
|
@ -419,7 +418,6 @@ SProcPseudoramiXGetState(ClientPtr client)
|
|||
|
||||
TRACE;
|
||||
|
||||
swaps(&stuff->length);
|
||||
REQUEST_SIZE_MATCH(xPanoramiXGetStateReq);
|
||||
return ProcPseudoramiXGetState(client);
|
||||
}
|
||||
|
@ -431,7 +429,6 @@ SProcPseudoramiXGetScreenCount(ClientPtr client)
|
|||
|
||||
TRACE;
|
||||
|
||||
swaps(&stuff->length);
|
||||
REQUEST_SIZE_MATCH(xPanoramiXGetScreenCountReq);
|
||||
return ProcPseudoramiXGetScreenCount(client);
|
||||
}
|
||||
|
@ -443,7 +440,6 @@ SProcPseudoramiXGetScreenSize(ClientPtr client)
|
|||
|
||||
TRACE;
|
||||
|
||||
swaps(&stuff->length);
|
||||
REQUEST_SIZE_MATCH(xPanoramiXGetScreenSizeReq);
|
||||
return ProcPseudoramiXGetScreenSize(client);
|
||||
}
|
||||
|
@ -455,7 +451,6 @@ SProcPseudoramiXIsActive(ClientPtr client)
|
|||
|
||||
TRACE;
|
||||
|
||||
swaps(&stuff->length);
|
||||
REQUEST_SIZE_MATCH(xXineramaIsActiveReq);
|
||||
return ProcPseudoramiXIsActive(client);
|
||||
}
|
||||
|
@ -467,7 +462,6 @@ SProcPseudoramiXQueryScreens(ClientPtr client)
|
|||
|
||||
TRACE;
|
||||
|
||||
swaps(&stuff->length);
|
||||
REQUEST_SIZE_MATCH(xXineramaQueryScreensReq);
|
||||
return ProcPseudoramiXQueryScreens(client);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue