本文整理汇总了C++中GfxStats::onLostDevice方法的典型用法代码示例。如果您正苦于以下问题:C++ GfxStats::onLostDevice方法的具体用法?C++ GfxStats::onLostDevice怎么用?C++ GfxStats::onLostDevice使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GfxStats
的用法示例。
在下文中一共展示了GfxStats::onLostDevice方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: onLostDevice
void FireRingDemo::onLostDevice()
{
mGfxStats->onLostDevice();
mTerrain->onLostDevice();
mPSys->onLostDevice();
}
示例2: onLostDevice
void CameraDemo::onLostDevice()
{
mGfxStats->onLostDevice();
mTerrain->onLostDevice();
}
示例3: onLostDevice
void DiffuseCubeDemo::onLostDevice()
{
mGfxStats->onLostDevice();
HR(mFX->OnLostDevice());
}
示例4: onLostDevice
void SolarSysDemo::onLostDevice()
{
mGfxStats->onLostDevice();
HR(mFX->OnLostDevice());
}
示例5: onLostDevice
void ProjTexDemo::onLostDevice()
{
mGfxStats->onLostDevice();
mSky->onLostDevice();
HR(mFX->OnLostDevice());
}
示例6: onLostDevice
void GunDemo::onLostDevice()
{
mGfxStats->onLostDevice();
mTerrain->onLostDevice();
mPSys->onLostDevice();
}
示例7: onLostDevice
void XFileDemo::onLostDevice()
{
mGfxStats->onLostDevice();
HR(mFX->OnLostDevice());
}
示例8: onLostDevice
void TiledGroundDemo::onLostDevice()
{
mGfxStats->onLostDevice();
HR(mFX->OnLostDevice());
}
示例9: onLostDevice
void AmbientDiffuseDemo::onLostDevice()
{
mGfxStats->onLostDevice();
HR(mFX->OnLostDevice());
}
示例10: onLostDevice
void TriGridDemo::onLostDevice()
{
mGfxStats->onLostDevice();
HR(mFX->OnLostDevice());
}
示例11: onLostDevice
void CubeDemo::onLostDevice()
{
mGfxStats->onLostDevice();
}
示例12: onLostDevice
void CullingDemo::onLostDevice()
{
mGfxStats->onLostDevice();
mTerrain->onLostDevice();
}
示例13: onLostDevice
void MultiTexDemo::onLostDevice()
{
mGfxStats->onLostDevice();
HR(mFX->OnLostDevice());
}
示例14: onLostDevice
void MirrorDemo::onLostDevice()
{
mGfxStats->onLostDevice();
HR(mFX->OnLostDevice());
}
示例15: onLostDevice
void SpotlightDemo::onLostDevice()
{
mGfxStats->onLostDevice();
HR(mFX->OnLostDevice());
}