Android: resize with software rendering, reverted again (Bug 4669)

This commit is contained in:
Sylvain Becker
2019-06-18 18:53:58 +02:00
parent 12b92260cc
commit e96d4760ac
3 changed files with 0 additions and 19 deletions

View File

@@ -237,18 +237,6 @@ Android_SetScreenResolution(int surfaceWidth, int surfaceHeight, int deviceWidth
Android_ScreenRate = (int)rate;
}
void
Android_GetScreenResolution(int *w, int *h)
{
if (w) {
*w = Android_SurfaceWidth;
}
if (h) {
*h = Android_SurfaceHeight;
}
}
void Android_SendResize(SDL_Window *window)
{
/*

View File

@@ -30,7 +30,6 @@
/* Called by the JNI layer when the screen changes size or format */
extern void Android_SetScreenResolution(int surfaceWidth, int surfaceHeight, int deviceWidth, int deviceHeight, Uint32 format, float rate);
extern void Android_SendResize(SDL_Window *window);
extern void Android_GetScreenResolution(int *w, int *h);
/* Private display data */