MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / clearResourceFlags

Method clearResourceFlags

Engine/source/gfx/gfxDevice.cpp:1197–1205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1195}
1196
1197void GFXDevice::clearResourceFlags()
1198{
1199 GFXResource* walk = mResourceListHead;
1200 while(walk)
1201 {
1202 walk->clearFlag();
1203 walk = walk->getNextResource();
1204 }
1205}
1206
1207DefineEngineFunction( listGFXResources, void, ( bool unflaggedOnly ), ( false ),
1208 "Returns a list of the unflagged GFX resources. See flagCurrentGFXResources for usage details.\n"

Callers 1

gfxDevice.cppFile · 0.80

Calls 2

clearFlagMethod · 0.80
getNextResourceMethod · 0.80

Tested by

no test coverage detected