ANDROID: Add GLAD support

This commit is contained in:
Le Philousophe 2022-01-04 23:18:51 +01:00 committed by Paweł Kołodziejski
parent a9418f8f63
commit 1c18c269dc
9 changed files with 30 additions and 8 deletions

View file

@ -223,8 +223,7 @@ void AndroidGraphicsManager::touchControlNotifyChanged() {
void *AndroidGraphicsManager::getProcAddress(const char *name) const {
ENTER("%s", name);
// TODO: Support dynamically loaded OpenGL
return nullptr;
return androidGLgetProcAddress(name);
}
bool AndroidGraphicsManager::notifyMousePosition(Common::Point &mouse) {