Lines Matching refs:rep
52 xWindowsDRIQueryVersionReply rep; in ProcWindowsDRIQueryVersion() local
55 rep.type = X_Reply; in ProcWindowsDRIQueryVersion()
56 rep.length = 0; in ProcWindowsDRIQueryVersion()
57 rep.sequenceNumber = client->sequence; in ProcWindowsDRIQueryVersion()
58 rep.majorVersion = SERVER_WINDOWSDRI_MAJOR_VERSION; in ProcWindowsDRIQueryVersion()
59 rep.minorVersion = SERVER_WINDOWSDRI_MINOR_VERSION; in ProcWindowsDRIQueryVersion()
60 rep.patchVersion = SERVER_WINDOWSDRI_PATCH_VERSION; in ProcWindowsDRIQueryVersion()
62 swaps(&rep.sequenceNumber); in ProcWindowsDRIQueryVersion()
63 swapl(&rep.length); in ProcWindowsDRIQueryVersion()
64 swaps(&rep.majorVersion); in ProcWindowsDRIQueryVersion()
65 swaps(&rep.minorVersion); in ProcWindowsDRIQueryVersion()
66 swapl(&rep.patchVersion); in ProcWindowsDRIQueryVersion()
68 WriteToClient(client, sizeof(xWindowsDRIQueryVersionReply), &rep); in ProcWindowsDRIQueryVersion()
75 xWindowsDRIQueryDirectRenderingCapableReply rep; in ProcWindowsDRIQueryDirectRenderingCapable() local
79 rep.type = X_Reply; in ProcWindowsDRIQueryDirectRenderingCapable()
80 rep.length = 0; in ProcWindowsDRIQueryDirectRenderingCapable()
81 rep.sequenceNumber = client->sequence; in ProcWindowsDRIQueryDirectRenderingCapable()
84 rep.isCapable = 0; in ProcWindowsDRIQueryDirectRenderingCapable()
86 rep.isCapable = glxWinGetScreenAiglxIsActive(screenInfo.screens[stuff->screen]); in ProcWindowsDRIQueryDirectRenderingCapable()
89 swaps(&rep.sequenceNumber); in ProcWindowsDRIQueryDirectRenderingCapable()
90 swapl(&rep.length); in ProcWindowsDRIQueryDirectRenderingCapable()
95 &rep); in ProcWindowsDRIQueryDirectRenderingCapable()
102 xWindowsDRIQueryDrawableReply rep; in ProcWindowsDRIQueryDrawable() local
107 rep.type = X_Reply; in ProcWindowsDRIQueryDrawable()
108 rep.length = 0; in ProcWindowsDRIQueryDrawable()
109 rep.sequenceNumber = client->sequence; in ProcWindowsDRIQueryDrawable()
111 rc = glxWinQueryDrawable(client, stuff->drawable, &(rep.drawable_type), &(rep.handle)); in ProcWindowsDRIQueryDrawable()
117 swaps(&rep.sequenceNumber); in ProcWindowsDRIQueryDrawable()
118 swapl(&rep.length); in ProcWindowsDRIQueryDrawable()
119 swapl(&rep.handle); in ProcWindowsDRIQueryDrawable()
120 swapl(&rep.drawable_type); in ProcWindowsDRIQueryDrawable()
123 WriteToClient(client, sizeof(xWindowsDRIQueryDrawableReply), &rep); in ProcWindowsDRIQueryDrawable()
130 xWindowsDRIFBConfigToPixelFormatReply rep; in ProcWindowsDRIFBConfigToPixelFormat() local
134 rep.type = X_Reply; in ProcWindowsDRIFBConfigToPixelFormat()
135 rep.length = 0; in ProcWindowsDRIFBConfigToPixelFormat()
136 rep.sequenceNumber = client->sequence; in ProcWindowsDRIFBConfigToPixelFormat()
138 rep.pixelFormatIndex = glxWinFBConfigIDToPixelFormatIndex(stuff->screen, stuff->fbConfigID); in ProcWindowsDRIFBConfigToPixelFormat()
141 swaps(&rep.sequenceNumber); in ProcWindowsDRIFBConfigToPixelFormat()
142 swapl(&rep.length); in ProcWindowsDRIFBConfigToPixelFormat()
143 swapl(&rep.pixelFormatIndex); in ProcWindowsDRIFBConfigToPixelFormat()
146 WriteToClient(client, sizeof(xWindowsDRIFBConfigToPixelFormatReply), &rep); in ProcWindowsDRIFBConfigToPixelFormat()