| /RvlSDK-3.2/build/tools/TexConv/sample/ |
| D | sample.tcs | 48 file 0 = dolphin_32.tga ; this is a 32-bit rgba image 49 file 1 = pikachu_8.tga ; this is an 8-bit color-indexed image with 256 entry 24-bit … 50 file 2 = car_24.tga ; this is a 24-bit rgb image 67 ; image can have any dimensions. 69 ; if mipmapping: source image is considered to be LOD 0. 70 ; numbers indicate minLOD desired relative to source image, 71 ; maxLOD desired relative to source image, remapped minLOD. 76 ; image dimensions must be power of 2, 80 image 0 = 0, 0, RGBA8, 0, 7, 0 ; use color from file 0, alpha from file 0 86 image 1 = 0, 0, RGB5A3, 0, 7, 0 [all …]
|
| /RvlSDK-3.2/build/demos/nanddemo/tpl/ |
| D | yoshi.tcs | 7 image 0 = 0, 0, RGB5A3 8 image 1 = 1, 1, RGB5A3 9 image 2 = 2, 2, RGB5A3 10 image 3 = 3, 3, RGB5A3 12 texture 0 = 0, x ; texture 0 uses image 0, no palette 13 texture 1 = 1, x ; texture 0 uses image 0, no palette 14 texture 2 = 2, x ; texture 0 uses image 0, no palette 15 texture 3 = 3, x ; texture 0 uses image 0, no palette
|
| D | wii.tcs | 2 file 0 = wii.tga ; this is a 192x64 rgba image 4 image 0 = 0, 0, RGB5A3 6 texture 0 = 0, x ; texture 0 uses image 0, no palette
|
| /RvlSDK-3.2/build/demos/osdemo/src/ |
| D | fontdemo2.c | 37 u32 image[24 / 8 * 24]; // 24 x 24 in main() local 74 memset(image, 0x00, sizeof(image)); in main() 80 string = OSGetFontTexel(string, image, 0, 24 / 4, &width); in main() 85 image[j], in main() 86 image[j + 32 / sizeof(u32)], in main() 87 image[j + 64 / sizeof(u32)]); in main()
|
| D | fontdemo1.c | 64 static void LoadSheet(void* image) in LoadSheet() argument 71 image, // image_ptr in LoadSheet() 102 void* image; in DrawChar() local 123 OSGetFontTexture(buffer, &image, &xChar, &yChar, &width); in DrawChar() 124 LoadSheet(image); in DrawChar() 136 void* image; in DrawString() local 141 string = OSGetFontTexture(string, &image, &xChar, &yChar, &width); in DrawString() 142 LoadSheet(image); in DrawString()
|
| /RvlSDK-3.2/build/libraries/tc/src/ |
| D | TCTextureList.cpp | 90 void TCSetTextureAttributes ( TCTexture* tx, u32 index, u32 image, in TCSetTextureAttributes() argument 96 tx->image = image; in TCSetTextureAttributes() 142 tmpTx.image = thisTex->image; in TCSwapTexture() 148 thisTex->image = thatTex->image; in TCSwapTexture() 154 thatTex->image = tmpTx.image; in TCSwapTexture()
|
| D | TCVerify.cpp | 136 if( (imPtr = TCFindImageByIndex( txPtr->image )) == NULL ) in TCVerifyLists()
|
| D | TCTPLToolbox.cpp | 877 thisImage = TCFindImageByIndex( thisTex->image ); in TCSetTplTextureValues()
|
| /RvlSDK-3.2/build/libraries/demo/src/ |
| D | DEMOPuts.c | 557 static void LoadSheet(void* image, GXTexMapID texMapID) in LoadSheet() argument 562 if (LastSheet == image) in LoadSheet() 566 LastSheet = image; in LoadSheet() 570 image, // image_ptr in LoadSheet() 611 void* image; in DEMORFPuts() local 651 string = OSGetFontTexture(string, &image, &xChar, &yChar, &cx); in DEMORFPuts() 653 LoadSheet(image, GX_TEXMAP0); in DEMORFPuts() 663 void* image; in DEMORFPutsEx() local 699 string = OSGetFontTexture(string, &image, &xChar, &yChar, &cx); in DEMORFPutsEx() 708 LoadSheet(image, GX_TEXMAP0); in DEMORFPutsEx() [all …]
|
| /RvlSDK-3.2/build/demos/videmo/src/ |
| D | viewer.c | 140 u8* image; // processed image member 287 readConvertBmp(dirent.name, ip->image, &width, &height); in idle() 295 readConvertBmp(dirent.name, ip->image, &width, &height); in idle() 312 readConvertBmp(fn, ip->image + firstLength, &width, &height); in idle() 314 ip->image2 = ip->image + firstLength; in idle() 337 DVDRead(&finfo, ip->image, (s32)OSRoundUp32B(length), 0)) in idle() 349 DCStoreRange((void*)ip->image, width * height * 2); in idle() 351 DCStoreRange((void*)ip->image, width * height * 2 * 2); in idle() 397 ip.image = (xfb == xfb1)? xfb2 : xfb1; in printOneLevel()
|
| /RvlSDK-3.2/build/libraries/tc/include/ |
| D | TCTextureList.h | 56 u32 image; // indices of member components. 0 indicates no component present member 74 void TCSetTextureAttributes( TCTexture* tx, u32 index, u32 image, u32 palette );
|
| /RvlSDK-3.2/include/revolution/dvd/ |
| D | DVDBanner.h | 54 u8 image[2 * DVD_BANNER_WIDTH * DVD_BANNER_HEIGHT]; // RGB5A3 96x32 texture image member 80 u8 image[2 * DVD_BANNER_WIDTH * DVD_BANNER_HEIGHT]; // RGB5A3 96x32 texture image member
|
| /RvlSDK-3.2/include/dolphin/dvd/ |
| D | DVDBanner.h | 48 u8 image[2 * DVD_BANNER_WIDTH * DVD_BANNER_HEIGHT]; // RGB5A3 96x32 texture image member 74 u8 image[2 * DVD_BANNER_WIDTH * DVD_BANNER_HEIGHT]; // RGB5A3 96x32 texture image member
|
| /RvlSDK-3.2/include/revolution/os/ |
| D | OSFont.h | 116 char* OSGetFontTexture( const char* string, void** image, s32 *x, s32 *y, s32* width ); 133 char* OSGetFontTexel ( const char* string, void* image, s32 pos, s32 stride, s32* width );
|
| /RvlSDK-3.2/include/revolution/ |
| D | fnt.h | 73 void* image; // Pointer to texture image sheet member
|
| /RvlSDK-3.2/build/demos/fntdemo/src/ |
| D | fntdemo1.c | 133 if (tex->image != *lastImage) in DrawChar() 137 GXInitTexObj(&tobj, tex->image, tex->texWidth, tex->texHeight, in DrawChar() 142 *lastImage = tex->image; in DrawChar()
|