Home
last modified time | relevance | path

Searched refs:lyAlpha (Results 1 – 10 of 10) sorted by relevance

/RvlSDK-3.3/build/libraries/tc/src/
DTCMipmap.cpp171 …f( (thisImage->lyColor.width != thisImage->lyAlpha.width) || (thisImage->lyColor.height != thisIma… in TCWriteTplImageMipMaps()
177 alphaLayer = &imTmp.lyAlpha; in TCWriteTplImageMipMaps()
178 alphaLayer->type = thisImage->lyAlpha.type; in TCWriteTplImageMipMaps()
179 alphaLayer->width = ( thisImage->lyAlpha.width >> thisImage->minLOD ); in TCWriteTplImageMipMaps()
180 alphaLayer->height = ( thisImage->lyAlpha.height >> thisImage->minLOD ); in TCWriteTplImageMipMaps()
210 alphaLayer->width = ( thisImage->lyAlpha.width >> level ); in TCWriteTplImageMipMaps()
211 alphaLayer->height = ( thisImage->lyAlpha.height >> level ); in TCWriteTplImageMipMaps()
288 srcAlpha = &srcImage->lyAlpha; in TCCreateNextMipMapLayer()
DTCImageList.cpp123 …TCAssertMsg( (dfPtr->lyAlpha != NULL), "ImNew: no alpha layer in file %s for image %d\n", dfPtr->n… in TCSetImageValues()
126 lyPtr = &(imPtr->lyAlpha); in TCSetImageValues()
127 lyPtr->type = dfPtr->lyAlpha->type; in TCSetImageValues()
128 lyPtr->width = dfPtr->lyAlpha->width; in TCSetImageValues()
129 lyPtr->height = dfPtr->lyAlpha->height; in TCSetImageValues()
DTCFile.cpp264 if( dfPtr->lyAlpha != NULL ) in TCReadFile()
266 if( dfPtr->lyAlpha->data != NULL ) in TCReadFile()
268 TCFree( (void**)( &(dfPtr->lyAlpha->data) ) ); in TCReadFile()
270 TCFree( (void**)( &(dfPtr->lyAlpha)) ); in TCReadFile()
DTCCreateS3.cpp109 void TCConvertToS3( TCLayer* lyColor, TCLayer* lyAlpha, TCLayer* lyCmp ) in TCConvertToS3() argument
174 if( lyAlpha != NULL ) in TCConvertToS3()
176 TCGetLayerValue( lyAlpha, col, row, &a, NULL, NULL ); in TCConvertToS3()
DTCLayer.cpp334 newLy->type = dfPtr->lyAlpha->type; in TCMakeImAlphaLayer()
335 newLy->width = dfPtr->lyAlpha->width; in TCMakeImAlphaLayer()
336 newLy->height = dfPtr->lyAlpha->height; in TCMakeImAlphaLayer()
346 TCGetLayerValue(dfPtr->lyAlpha, col, row, &a, NULL, NULL); in TCMakeImAlphaLayer()
DTCTPLToolbox.cpp1287 TCMakeImAlphaLayer( dfPtr, &(imPtr->lyAlpha) ); in TCWriteTplImageBank()
1356 if( (imPtr->lyAlpha).data != NULL ) in TCWriteTplImageBank()
1358 TCFree( (void**)(&imPtr->lyAlpha.data) ); in TCWriteTplImageBank()
1359 imPtr->lyAlpha.data = NULL; in TCWriteTplImageBank()
/RvlSDK-3.3/build/libraries/tc/include/
DTCCreateS3.h60 void TCConvertToS3( TCLayer* lyColor, TCLayer* lyAlpha, TCLayer* lyCmp );
DTCImageList.h88 TCLayer lyAlpha; // alpha layer member
/RvlSDK-3.3/include/charPipeline/tc/
DTCFile.h44 TCLayer* lyAlpha; member
/RvlSDK-3.3/build/tools/TexConv/src/
Dtga.cpp489 dfPtr->lyAlpha = TCCreateLayer(); in CreateTgaAlphaLayer()
490 newLayer = dfPtr->lyAlpha; in CreateTgaAlphaLayer()