Lines Matching refs:sendBuf
1638 int sendBuf[nProps * 2]; in DoQueryContext() local
1653 sendBuf[0] = GLX_SHARE_CONTEXT_EXT; in DoQueryContext()
1654 sendBuf[1] = (int) (ctx->share_id); in DoQueryContext()
1655 sendBuf[2] = GLX_VISUAL_ID_EXT; in DoQueryContext()
1656 sendBuf[3] = (int) (ctx->config ? ctx->config->visualID : 0); in DoQueryContext()
1657 sendBuf[4] = GLX_SCREEN_EXT; in DoQueryContext()
1658 sendBuf[5] = (int) (ctx->pGlxScreen->pScreen->myNum); in DoQueryContext()
1659 sendBuf[6] = GLX_FBCONFIG_ID; in DoQueryContext()
1660 sendBuf[7] = (int) (ctx->config ? ctx->config->fbconfigID : 0); in DoQueryContext()
1661 sendBuf[8] = GLX_RENDER_TYPE; in DoQueryContext()
1662 sendBuf[9] = (int) (ctx->config ? ctx->config->renderType : GLX_DONT_CARE); in DoQueryContext()
1673 __GLX_SWAP_INT_ARRAY((int *) sendBuf, length); in DoQueryContext()
1674 WriteToClient(client, length << 2, sendBuf); in DoQueryContext()
1678 WriteToClient(client, nReplyBytes, sendBuf); in DoQueryContext()