Lines Matching refs:u32
71 u32 index; // image index from script file. This is also the .tpl bank location
73 u32 colorSrcImage; // srcImage index for color layer
74 u32 alphaSrcImage; // srcImage index for alpha layer; 0 if no alpha layer
76 u32 texelFormat; // Dolphin texture format from script file
78 u32 minLOD; // minimum LOD level desired relative to srcImage
79 u32 maxLOD; // maximum LOD level desired relative to srcImage
80 u32 remapMinLOD; // remapped (actual) minLOD for .tpl file
82 u32 wrapS; // wrap mode in S axis
83 u32 wrapT; // wrap mode in T axis
90 u32 tplImageBankOffset; // bytes from top of .tpl file to image texel data
91 u32 tplBufferSize; // size of image buffer including padding to 32B tiles
106 TCImage* TCFindImageByIndex ( u32 index );
107 void TCSetImageIndex ( TCImage* im, u32 index );
109 void TCSetImageLayerAtt ( TCImage* im, u32 colorLayer, u32 alphaLayer );
110 void TCSetImageWrap ( TCImage* im, u32 wrapS, u32 wrapT );
112 void TCSetImageTexelFormat ( TCImage* im, u32 texelFmt );
114 void TCSetImageMipMap ( TCImage* im, u32 minLOD, u32 maxLOD, u32 baseLOD );
116 u32 TCFindImagePos ( TCImage* im );