Lines Matching defs:fEnable
252 int Display::i_VideoAccelEnable(bool fEnable, VBVAMEMORY *pVbvaMemory, PPDMIDISPLAYPORT pUpPort)
255 LogRelFlowFunc(("fEnable = %d\n", fEnable));
257 rc = i_videoAccelEnable(fEnable, pVbvaMemory, pUpPort);
263 int Display::i_videoAccelEnable(bool fEnable, VBVAMEMORY *pVbvaMemory, PPDMIDISPLAYPORT pUpPort)
279 LogRelFlowFunc(("mfVideoAccelEnabled = %d, fEnable = %d, pVbvaMemory = %p\n",
280 pVideoAccel->fVideoAccelEnabled, fEnable, pVbvaMemory));
283 Assert((fEnable && pVbvaMemory) || (!fEnable && pVbvaMemory == NULL));
289 if (pVideoAccel->fVideoAccelEnabled == fEnable)
298 if (!fEnable && pVideoAccel->pVbvaMemory)
301 if (fEnable)
310 if (fEnable)
337 if (!fEnable)
350 pVMMDevPort->pfnVBVAChange(pVMMDevPort, fEnable);