Home
last modified time | relevance | path

Searched refs:textureList (Results 1 – 3 of 3) sorted by relevance

/CafeSDK-2.12.13/system/include/cafe/demo/demowin/
Ddemowin_manager.h23 …WindowManager(Peripheral* peripheral, GX2Texture** textureList = NULL, float screenWidth = 1.77777…
26 void SetTextureList(GX2Texture** textureList);
51 GX2Texture* textureList[CW_NUM_TEXTURES]; member
/CafeSDK-2.12.13/system/src/lib/demo/headers/cafe/demo/demowin/
Ddemowin_manager.h23 …WindowManager(Peripheral* peripheral, GX2Texture** textureList = NULL, float screenWidth = 1.77777…
26 void SetTextureList(GX2Texture** textureList);
51 GX2Texture* textureList[CW_NUM_TEXTURES]; member
/CafeSDK-2.12.13/system/src/lib/demo/demowin/
Ddemowin_manager.cpp14 WindowManager::WindowManager(Peripheral* peripheral, GX2Texture** textureList, float screenWidth) in WindowManager() argument
20 if (textureList) in WindowManager()
21 memcpy(this->textureList, textureList, sizeof(this->textureList)); in WindowManager()
23 memset(this->textureList, NULL, sizeof(this->textureList)); in WindowManager()
35 void WindowManager::SetTextureList(GX2Texture** textureList) in SetTextureList() argument
37 memcpy(this->textureList, textureList, sizeof(this->textureList)); in SetTextureList()
572 return &this->textureList[num]; in GetTexture()
578 return this->textureList; in GetTextureList()