2017-01-28 11:29:03 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
2017-04-26 10:23:36 +00:00
|
|
|
* Project64-video - A Nintendo 64 gfx plugin. *
|
2017-01-28 11:29:03 +00:00
|
|
|
* http://www.pj64-emu.com/ *
|
2017-04-26 10:23:36 +00:00
|
|
|
* Copyright (C) 2017 Project64. All rights reserved. *
|
2017-01-28 11:29:03 +00:00
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <Common/stdtypes.h>
|
|
|
|
|
2017-04-27 10:24:10 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
void UpdateScreenResolution(int ScreenWidth, int ScreenHeight);
|
2017-05-22 07:32:32 +00:00
|
|
|
#else
|
|
|
|
const char ** getFullScreenResList(int32_t * Size);
|
|
|
|
uint32_t getFullScreenRes(uint32_t * width, uint32_t * height);
|
2017-04-27 10:24:10 +00:00
|
|
|
#endif
|
2017-05-22 07:32:32 +00:00
|
|
|
|
2017-01-31 10:37:16 +00:00
|
|
|
uint32_t GetScreenResolutionCount();
|
|
|
|
uint32_t GetDefaultScreenRes();
|
|
|
|
uint32_t GetScreenResWidth(uint32_t index);
|
|
|
|
uint32_t GetScreenResHeight(uint32_t index);
|
|
|
|
const char * GetScreenResolutionName(uint32_t index);
|
|
|
|
|
|
|
|
int GetCurrentResIndex(void);
|
2017-01-28 11:29:03 +00:00
|
|
|
uint32_t GetFullScreenResWidth(uint32_t index);
|
|
|
|
uint32_t GetFullScreenResHeight(uint32_t index);
|
|
|
|
bool EnterFullScreen(uint32_t index);
|