| /CafeSDK-2.12.13-1/system/src/lib/demo/demowin/ |
| D | demowin_button.cpp | 60 if (text.text[0]) in Draw() 61 …DrawTextCenter(text.text, CVec3(x, y, z + 0.0001), CVec2(width, height * 0.8), CVec4(1.0 - color.r… in Draw()
|
| D | demowin_held_button.cpp | 67 if (text.text[0]) in Draw() 68 …DrawTextCenter(text.text, CVec3(x, y, z + 0.0001), CVec2(width, height * 0.8), CVec4(1.0 - color.r… in Draw()
|
| D | demowin_text_center.cpp | 29 DrawTextCenter(text.text, position, size, color); in Draw()
|
| D | demowin_text_right.cpp | 29 DrawTextRight(text.text, position, size, color); in Draw()
|
| D | demowin_text_multi.cpp | 29 DrawMultiLineText(text.text, position, size, color); in Draw()
|
| D | demowin_text.cpp | 29 DrawText(text.text, position, size, color); in Draw()
|
| /CafeSDK-2.12.13-1/system/include/cafe/demo/demowin/ |
| D | demowin_held_button.h | 19 …: MenuItem(window, position, size), text(""), tex(NULL), colorFunc(_colorFunc), func(_func), funcE… in MenuItem() 22 …: MenuItem(window, position, size), text(_text), tex(NULL), colorFunc(_colorFunc), func(_func), fu… in MenuItem() 25 …: MenuItem(window, position, size), text(""), tex(_tex), colorFunc(_colorFunc), func(_func), funcE… in MenuItem() 33 String<MAX_NAME_LENGTH> text; member
|
| D | demowin_button.h | 19 …: MenuItem(window, position, size), text(""), tex(NULL), colorFunc(_colorFunc), func(_func), funcE… in MenuItem() 22 …: MenuItem(window, position, size), text(_text), tex(NULL), colorFunc(_colorFunc), func(_func), fu… in MenuItem() 25 …: MenuItem(window, position, size), text(""), tex(_tex), colorFunc(_colorFunc), func(_func), funcE… in MenuItem() 33 String<MAX_NAME_LENGTH> text; member
|
| D | demowin_text.h | 19 : MenuItem(window, position, size), text(_text), color(_color) {} in MenuText() 23 String<MAX_TEXT_LENGTH> text; member
|
| D | demowin_peripheral.h | 22 virtual void DrawText(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0; 23 virtual void DrawTextCenter(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0; 24 virtual void DrawTextRight(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0; 25 virtual void DrawMultiLineText(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
|
| D | demowin_assets.h | 121 String(const char* txt) {strcpy_s(text, txt);} in String() 123 String& operator=(const char* txt) {strcpy_s(text, txt); return *this;} 125 operator char*() {return text;} 127 char text[SIZE]; member 259 virtual const char* GetName() {return name.text;} in GetName() 277 virtual const char* GetName() {return name.text;} in GetName()
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/demowin/ |
| D | demowin_button.h | 19 …: MenuItem(window, position, size), text(""), tex(NULL), colorFunc(_colorFunc), func(_func), funcE… in MenuItem() 22 …: MenuItem(window, position, size), text(_text), tex(NULL), colorFunc(_colorFunc), func(_func), fu… in MenuItem() 25 …: MenuItem(window, position, size), text(""), tex(_tex), colorFunc(_colorFunc), func(_func), funcE… in MenuItem() 33 String<MAX_NAME_LENGTH> text; member
|
| D | demowin_held_button.h | 19 …: MenuItem(window, position, size), text(""), tex(NULL), colorFunc(_colorFunc), func(_func), funcE… in MenuItem() 22 …: MenuItem(window, position, size), text(_text), tex(NULL), colorFunc(_colorFunc), func(_func), fu… in MenuItem() 25 …: MenuItem(window, position, size), text(""), tex(_tex), colorFunc(_colorFunc), func(_func), funcE… in MenuItem() 33 String<MAX_NAME_LENGTH> text; member
|
| D | demowin_text.h | 19 : MenuItem(window, position, size), text(_text), color(_color) {} in MenuText() 23 String<MAX_TEXT_LENGTH> text; member
|
| D | demowin_peripheral.h | 22 virtual void DrawText(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0; 23 virtual void DrawTextCenter(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0; 24 virtual void DrawTextRight(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0; 25 virtual void DrawMultiLineText(const char* text, CVec3 position, CVec2 size, CVec4 color) = 0;
|
| D | demowin_assets.h | 121 String(const char* txt) {strcpy_s(text, txt);} in String() 123 String& operator=(const char* txt) {strcpy_s(text, txt); return *this;} 125 operator char*() {return text;} 127 char text[SIZE]; member 259 virtual const char* GetName() {return name.text;} in GetName() 277 virtual const char* GetName() {return name.text;} in GetName()
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/ |
| D | demowin.h | 48 const char* GetName() {return name.text;} in GetName() 181 void DrawText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawText() 182 …{window->manager->peripheral->DrawText(text, CVec3(window->GetX() + position.x, window->GetY() + p… in DrawText() 183 void DrawTextCenter(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextCenter() 184 …{window->manager->peripheral->DrawTextCenter(text, CVec3(window->GetX() + position.x, window->GetY… in DrawTextCenter() 185 void DrawTextRight(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextRight() 186 …{window->manager->peripheral->DrawTextRight(text, CVec3(window->GetX() + position.x, window->GetY(… in DrawTextRight() 187 void DrawMultiLineText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawMultiLineText() 188 …{window->manager->peripheral->DrawMultiLineText(text, CVec3(window->GetX() + position.x, window->G… in DrawMultiLineText()
|
| /CafeSDK-2.12.13-1/system/include/cafe/demo/ |
| D | demowin.h | 48 const char* GetName() {return name.text;} in GetName() 181 void DrawText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawText() 182 …{window->manager->peripheral->DrawText(text, CVec3(window->GetX() + position.x, window->GetY() + p… in DrawText() 183 void DrawTextCenter(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextCenter() 184 …{window->manager->peripheral->DrawTextCenter(text, CVec3(window->GetX() + position.x, window->GetY… in DrawTextCenter() 185 void DrawTextRight(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextRight() 186 …{window->manager->peripheral->DrawTextRight(text, CVec3(window->GetX() + position.x, window->GetY(… in DrawTextRight() 187 void DrawMultiLineText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawMultiLineText() 188 …{window->manager->peripheral->DrawMultiLineText(text, CVec3(window->GetX() + position.x, window->G… in DrawMultiLineText()
|
| /CafeSDK-2.12.13-1/system/include/cafe/ |
| D | kpr.h | 42 wchar_t text[ KPR_MAX_QUEUE_LEN ]; member
|
| D | eppc.Cafe.rpl.ld | 14 .text ALIGN(0x20) : > codearea
|
| D | eppc.Cafe.ld | 14 .text ALIGN(0x20) : > codearea
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/ |
| D | demowin.cpp | 131 MenuText text(this, CVec3(0, 0, 0.1), CVec2(1.0, 0.07), "", CVec4(1.0, 1.0, 1.0)); in Init() local 150 text.text = names[j]; in Init() 151 text.y = -0.1 - j * 0.1; in Init() 152 MenuText::Add(text); in Init()
|
| /CafeSDK-2.12.13-1/system/src/lib/libsys/ |
| D | ind_exit.c | 55 section .text
|
| D | ind_dots.ppc | 36 blr # return to .text section
|
| D | ind_call.ppc | 47 .text 57 .text
|