-
Notifications
You must be signed in to change notification settings - Fork 12
/
display_linux.cpp
171 lines (131 loc) · 4.12 KB
/
display_linux.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/**************************************************************
display_linux.cpp - Display manager for Linux
---------------------------------------------------------
Switchres Modeline generation engine for emulation
License GPL-2.0+
Copyright 2010-2021 Chris Kennedy, Antonio Giner,
Alexandre Wodarczyk, Gil Delescluse
**************************************************************/
#include <stdio.h>
#include <string.h>
#include "display_linux.h"
#include "log.h"
//============================================================
// linux_display::linux_display
//============================================================
linux_display::linux_display(display_settings *ds)
{
// Get display settings
m_ds = *ds;
}
//============================================================
// linux_display::~linux_display
//============================================================
linux_display::~linux_display()
{
if (!m_ds.keep_changes)
restore_desktop_mode();
}
//============================================================
// linux_display::init
//============================================================
bool linux_display::init(void* pfdata)
{
m_pf_data = pfdata;
// Initialize custom video
int method = CUSTOM_VIDEO_TIMING_AUTO;
#ifdef SR_WITH_XRANDR
if (!strcmp(m_ds.api, "xrandr"))
method = CUSTOM_VIDEO_TIMING_XRANDR;
#endif
#ifdef SR_WITH_KMSDRM
if (!strcmp(m_ds.api, "drmkms"))
method = CUSTOM_VIDEO_TIMING_DRMKMS;
#endif
set_factory(new custom_video);
set_custom_video(factory()->make(m_ds.screen, NULL, method, &m_ds.vs));
if (!video() or !video()->init())
return false;
// Build our display's mode list
video_modes.clear();
backup_modes.clear();
get_desktop_mode();
get_available_video_modes();
if (!strcmp(m_ds.monitor, "lcd")) auto_specs();
filter_modes();
return true;
}
//============================================================
// linux_display::set_mode
//============================================================
bool linux_display::set_mode(modeline *mode)
{
if (mode && set_desktop_mode(mode, 0))
{
set_current_mode(mode);
return true;
}
return false;
}
//============================================================
// linux_display::get_desktop_mode
//============================================================
bool linux_display::get_desktop_mode()
{
if (video() == NULL)
return false;
return true;
}
//============================================================
// linux_display::set_desktop_mode
//============================================================
bool linux_display::set_desktop_mode(modeline *mode, int flags)
{
if (!mode)
return false;
if (video() == NULL)
return false;
if (flags != 0)
log_info("Set desktop mode flags value is 0x%x.\n", flags);
return video()->set_timing(mode);
}
//============================================================
// linux_display::restore_desktop_mode
//============================================================
bool linux_display::restore_desktop_mode()
{
if (video() == NULL)
return false;
return video()->set_timing(&desktop_mode);
}
//============================================================
// linux_display::get_available_video_modes
//============================================================
int linux_display::get_available_video_modes()
{
if (video() == NULL)
return false;
// loop through all modes until NULL mode type is received
for (;;)
{
modeline mode;
memset(&mode, 0, sizeof(struct modeline));
// get next mode
video()->get_timing(&mode);
if (mode.type == 0)
break;
// set the desktop mode
if (mode.type & MODE_DESKTOP)
{
memcpy(&desktop_mode, &mode, sizeof(modeline));
if (current_mode() == nullptr)
set_current_mode(&mode);
if (mode.type & MODE_ROTATED) set_desktop_is_rotated(true);
}
video_modes.push_back(mode);
backup_modes.push_back(mode);
log_verbose("Switchres: [%3ld] %4dx%4d @%3d%s%s %s: ", video_modes.size(), mode.width, mode.height, mode.refresh, mode.interlace ? "i" : "p", mode.type & MODE_DESKTOP ? "*" : "", mode.type & MODE_ROTATED ? "rot" : "");
log_mode(&mode);
};
return true;
}