Home
last modified time | relevance | path

Searched refs:newTx (Results 1 – 2 of 2) sorted by relevance

/RvlSDK-3.2.2/build/libraries/tc/src/
DTCTextureList.cpp65 TCTexture* newTx, *tail; in TCNewTexture() local
67 newTx = (TCTexture*)TCCalloc( 1, sizeof(TCTexture) ); in TCNewTexture()
71 TxHead = newTx; in TCNewTexture()
81 tail->next = newTx; in TCNewTexture()
82 newTx->prev = tail; in TCNewTexture()
83 newTx->next = NULL; in TCNewTexture()
86 return newTx; in TCNewTexture()
DTCScriptFile.cpp557 TCTexture* newTx; in TCProcessTxKey() local
592 newTx = TCNewTexture(); in TCProcessTxKey()
593 TCAssertMsg( (newTx != NULL), "ProcessTxKey(): couldn't allocate new Texture %d\n", index ); in TCProcessTxKey()
596 TCSetTextureAttributes( newTx, index, imNum, plNum ); in TCProcessTxKey()