Disable native framebuffer support

main
Ivan Epifanov 2021-01-10 00:12:03 +03:00 committed by Sam Lantinga
parent 54134fddd5
commit e56c44512a
1 changed files with 3 additions and 0 deletions

View File

@ -122,9 +122,12 @@ VITA_Create()
device->DestroyWindow = VITA_DestroyWindow;
device->GetWindowWMInfo = VITA_GetWindowWMInfo;
/*
// Disabled, causes issues on high-framerate updates. SDL still emulates this.
device->CreateWindowFramebuffer = VITA_CreateWindowFramebuffer;
device->UpdateWindowFramebuffer = VITA_UpdateWindowFramebuffer;
device->DestroyWindowFramebuffer = VITA_DestroyWindowFramebuffer;
*/
#if SDL_VIDEO_OPENGL_ES2
device->GL_LoadLibrary = VITA_GL_LoadLibrary;