IT COMPILESgit add .! also added full screen support. see issues.

This commit is contained in:
2026-03-24 21:38:31 -04:00
parent aec534d948
commit d554767309
5 changed files with 206 additions and 44 deletions

View File

@@ -275,8 +275,10 @@ void AppPlatform_iOS::hideKeyboard() {
[_viewController hideKeyboard];
super::hideKeyboard();
}
void AppPlatform_iOS::isPowerVR() {
// this was originally void but i changed it to bool because void cant return values
bool AppPlatform_iOS::isPowerVR() {
const char* s = (const char*)glGetString(GL_RENDERER);
if (!s) return false;
return strstr(s, "SGX") != NULL;
}
}