os_android: Add missing lovrPlatformSetSwapInterval;

This commit is contained in:
bjorn 2020-08-29 16:59:26 -06:00
parent aeda63b96a
commit 5d659d0ac2
2 changed files with 8 additions and 0 deletions

View File

@ -411,6 +411,10 @@ void lovrPlatformGetFramebufferSize(int* width, int* height) {
*height = 0;
}
void lovrPlatformSetSwapInterval(int interval) {
//
}
void lovrPlatformSwapBuffers() {
//
}

View File

@ -141,6 +141,10 @@ void lovrPlatformGetFramebufferSize(int* width, int* height) {
*height = 0;
}
void lovrPlatformSetSwapInterval(int interval) {
//
}
void lovrPlatformSwapBuffers() {
//
}