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

This commit is contained in:
deepfriedwaffles
2026-03-24 21:38:31 -04:00
parent 8708dc9c83
commit ec76c0fc2c
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;
}
}

View File

@@ -1,7 +1,7 @@
#pragma once
#include <sstream>
#include <type_traits>
#include "Mth.h"
#include <util/Mth.h>
/*
template<typename T>
struct is_option_type : std::false_type {};