| 1145 | } |
| 1146 | |
| 1147 | void Console::commandTextures(socket_native_type fd, std::string_view /*args*/) |
| 1148 | { |
| 1149 | Scheduler* sched = Director::getInstance()->getScheduler(); |
| 1150 | sched->runOnAxmolThread([=]() { |
| 1151 | Console::Utility::mydprintf(fd, "%s", |
| 1152 | Director::getInstance()->getTextureCache()->getCachedTextureInfo().c_str()); |
| 1153 | Console::Utility::sendPrompt(fd); |
| 1154 | }); |
| 1155 | } |
| 1156 | |
| 1157 | void Console::commandTexturesSubCommandFlush(socket_native_type /*fd*/, std::string_view /*args*/) |
| 1158 | { |
nothing calls this directly
no test coverage detected