Home
last modified time | relevance | path

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

/CafeSDK-2.12.13-1/system/include/cafe/demo/demowin/
Ddemowin_manager.h23 …WindowManager(Peripheral* peripheral, GX2Texture** textureList = NULL, float screenWidth = 1.77777…
27 void SetScreenWidth(float screenWidth);
48 float screenWidth;
/CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/demowin/
Ddemowin_manager.h23 …WindowManager(Peripheral* peripheral, GX2Texture** textureList = NULL, float screenWidth = 1.77777…
27 void SetScreenWidth(float screenWidth);
48 float screenWidth;
/CafeSDK-2.12.13-1/system/src/lib/demo/demowin/
Ddemowin_manager.cpp14 WindowManager::WindowManager(Peripheral* peripheral, GX2Texture** textureList, float screenWidth) in WindowManager() argument
25 this->screenWidth = screenWidth; in WindowManager()
41 void WindowManager::SetScreenWidth(float screenWidth) in SetScreenWidth() argument
43 this->screenWidth = screenWidth; in SetScreenWidth()
75 if (peripheral->CursorX() < -screenWidth) in UpdateInput()
76 peripheral->CursorX() = -screenWidth; in UpdateInput()
77 else if (peripheral->CursorX() > screenWidth) in UpdateInput()
78 peripheral->CursorX() = screenWidth; in UpdateInput()