mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Update dispserv_x11.c
This commit is contained in:
parent
fa8c9d7049
commit
fac95efaba
@ -41,6 +41,7 @@ static char xrandr[250] = {0};
|
|||||||
static char fbset[150] = {0};
|
static char fbset[150] = {0};
|
||||||
static char output[500] = {0};
|
static char output[500] = {0};
|
||||||
static bool crt_en = false;
|
static bool crt_en = false;
|
||||||
|
static unsigned crtid = 20;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
@ -78,7 +79,7 @@ static void x11_display_server_destroy(void *data)
|
|||||||
system(output);
|
system(output);
|
||||||
|
|
||||||
snprintf(output, sizeof(output),
|
snprintf(output, sizeof(output),
|
||||||
"xrandr --delmode %s %s",orig_mode, old_output);
|
"xrandr --delmode %s %s",orig_mode, orig_output);
|
||||||
system(output);
|
system(output);
|
||||||
|
|
||||||
|
|
||||||
@ -142,6 +143,13 @@ static bool x11_display_server_set_resolution(void *data,
|
|||||||
float pixel_clock = 0;
|
float pixel_clock = 0;
|
||||||
|
|
||||||
crt_en = true;
|
crt_en = true;
|
||||||
|
|
||||||
|
Display* dsp = XOpenDisplay(NULL);
|
||||||
|
Screen* scrn = DefaultScreenOfDisplay(dsp);
|
||||||
|
XRRScreenResources *res;
|
||||||
|
int screen = DefaultScreen ( dsp );
|
||||||
|
Window window = RootWindow ( dsp, screen );
|
||||||
|
|
||||||
|
|
||||||
/* set core refresh from hz */
|
/* set core refresh from hz */
|
||||||
video_monitor_set_refresh_rate(hz);
|
video_monitor_set_refresh_rate(hz);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user