当前位置: 首页>>代码示例>>C++>>正文


C++ GfxStats::onResetDevice方法代码示例

本文整理汇总了C++中GfxStats::onResetDevice方法的典型用法代码示例。如果您正苦于以下问题:C++ GfxStats::onResetDevice方法的具体用法?C++ GfxStats::onResetDevice怎么用?C++ GfxStats::onResetDevice使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在GfxStats的用法示例。


在下文中一共展示了GfxStats::onResetDevice方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: onResetDevice

void StencilMirrorDemo::onResetDevice()
{
	mGfxStats->onResetDevice();
	HR(mFX->OnResetDevice());

	buildProjMtx();
}
开发者ID:kasicass,项目名称:introdx9,代码行数:7,代码来源:StencilMirror.cpp

示例2: onResetDevice

void XFileDemo::onResetDevice()
{
	mGfxStats->onResetDevice();
	HR(mFX->OnResetDevice());

	buildProjMtx();
}
开发者ID:kasicass,项目名称:introdx9,代码行数:7,代码来源:XFileDemo.cpp

示例3: onResetDevice

void AmbientDiffuseDemo::onResetDevice()
{
    mGfxStats->onResetDevice();
    HR(mFX->OnResetDevice());

    buildProjMtx();
}
开发者ID:kasicass,项目名称:introdx9,代码行数:7,代码来源:AmbientDiffuseDemo.cpp

示例4: onResetDevice

void Evolution::onResetDevice()
{
    mGfxStats->onResetDevice();
    HR(mFont->OnResetDevice());

    HR(mFX->OnResetDevice());

    buildProjMtx();
}
开发者ID:DKennedyNS,项目名称:Evolution_Sim,代码行数:9,代码来源:Evolution.cpp

示例5: onResetDevice

void SolarSysDemo::onResetDevice()
{
	mGfxStats->onResetDevice();
	HR(mFX->OnResetDevice());

	// The aspect ratio depends on the backbuffer dimensions, which can 
	// possibly change after a reset.  So rebuild the projection matrix.
	buildProjMtx();
}
开发者ID:nguyenkim495,项目名称:KidBuu,代码行数:9,代码来源:SolarSysDemo.cpp

示例6: onResetDevice

void CameraDemo::onResetDevice()
{
	mGfxStats->onResetDevice();
	mTerrain->onResetDevice();


	// The aspect ratio depends on the backbuffer dimensions, which can 
	// possibly change after a reset.  So rebuild the projection matrix.
	float w = (float)md3dPP.BackBufferWidth;
	float h = (float)md3dPP.BackBufferHeight;
	gCamera->setLens(D3DX_PI * 0.25f, w/h, 1.0f, 5000.0f);
}
开发者ID:chenbk85,项目名称:3dlearn,代码行数:12,代码来源:CameraDemo.cpp

示例7: onResetDevice

void GfxStatsDemo::onResetDevice()
{
	mGfxStats->onResetDevice();
}
开发者ID:kasicass,项目名称:introdx9,代码行数:4,代码来源:GfxStatsDemo.cpp

示例8: onResetDevice

void CubeDemo::onResetDevice()
{
	mGfxStats->onResetDevice();
	buildProjMtx();
}
开发者ID:kasicass,项目名称:introdx9,代码行数:5,代码来源:CubeDemo.cpp


注:本文中的GfxStats::onResetDevice方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。