mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-04 12:05:23 +00:00
13 lines
301 B
C
13 lines
301 B
C
#pragma once
|
|
|
|
// This is meant to be a framework for handling DPI scaling etc.
|
|
// For now, it just consists of these ugly globals.
|
|
|
|
extern int dp_xres;
|
|
extern int dp_yres;
|
|
extern int pixel_xres;
|
|
extern int pixel_yres;
|
|
|
|
extern int g_dpi;
|
|
extern float g_dpi_scale;
|
|
extern float pixel_in_dps; |