Lines Matching refs:req
226 xDRI2QueryVersionReq *req;
232 GetReq(DRI2QueryVersion, req);
233 req->reqType = info->codes->major_opcode;
234 req->dri2ReqType = X_DRI2QueryVersion;
235 req->majorVersion = DRI2_MAJOR;
236 req->minorVersion = DRI2_MINOR;
273 xDRI2ConnectReq *req;
278 GetReq(DRI2Connect, req);
279 req->reqType = info->codes->major_opcode;
280 req->dri2ReqType = X_DRI2Connect;
281 req->window = window;
283 req->driverType = DRI2DriverDRI;
291 req->driverType |=
341 xDRI2AuthenticateReq *req;
347 GetReq(DRI2Authenticate, req);
348 req->reqType = info->codes->major_opcode;
349 req->dri2ReqType = X_DRI2Authenticate;
350 req->window = window;
351 req->magic = magic;
369 xDRI2CreateDrawableReq *req;
374 GetReq(DRI2CreateDrawable, req);
375 req->reqType = info->codes->major_opcode;
376 req->dri2ReqType = X_DRI2CreateDrawable;
377 req->drawable = drawable;
386 xDRI2DestroyDrawableReq *req;
393 GetReq(DRI2DestroyDrawable, req);
394 req->reqType = info->codes->major_opcode;
395 req->dri2ReqType = X_DRI2DestroyDrawable;
396 req->drawable = drawable;
408 xDRI2GetBuffersReq *req;
417 GetReqExtra(DRI2GetBuffers, count * 4, req);
418 req->reqType = info->codes->major_opcode;
419 req->dri2ReqType = X_DRI2GetBuffers;
420 req->drawable = drawable;
421 req->count = count;
422 p = (CARD32 *) & req[1];
467 xDRI2GetBuffersReq *req;
476 GetReqExtra(DRI2GetBuffers, count * (4 * 2), req);
477 req->reqType = info->codes->major_opcode;
478 req->dri2ReqType = X_DRI2GetBuffersWithFormat;
479 req->drawable = drawable;
480 req->count = count;
481 p = (CARD32 *) & req[1];
524 xDRI2CopyRegionReq *req;
530 GetReq(DRI2CopyRegion, req);
531 req->reqType = info->codes->major_opcode;
532 req->dri2ReqType = X_DRI2CopyRegion;
533 req->drawable = drawable;
534 req->region = region;
535 req->dest = dest;
536 req->src = src;