This repository was archived by the owner on Nov 1, 2021. It is now read-only.
File tree 3 files changed +0
-23
lines changed
3 files changed +0
-23
lines changed Original file line number Diff line number Diff line change @@ -153,13 +153,6 @@ static struct wlr_session *session_create_and_wait(struct wl_display *disp) {
153
153
return session ;
154
154
}
155
155
156
- clockid_t wlr_backend_get_presentation_clock (struct wlr_backend * backend ) {
157
- if (backend -> impl -> get_presentation_clock ) {
158
- return backend -> impl -> get_presentation_clock (backend );
159
- }
160
- return CLOCK_MONOTONIC ;
161
- }
162
-
163
156
int wlr_backend_get_drm_fd (struct wlr_backend * backend ) {
164
157
if (!backend -> impl -> get_drm_fd ) {
165
158
return -1 ;
Original file line number Diff line number Diff line change @@ -82,20 +82,6 @@ static struct wlr_session *multi_backend_get_session(
82
82
return backend -> session ;
83
83
}
84
84
85
- static clockid_t multi_backend_get_presentation_clock (
86
- struct wlr_backend * backend ) {
87
- struct wlr_multi_backend * multi = multi_backend_from_backend (backend );
88
-
89
- struct subbackend_state * sub ;
90
- wl_list_for_each (sub , & multi -> backends , link ) {
91
- if (sub -> backend -> impl -> get_presentation_clock ) {
92
- return wlr_backend_get_presentation_clock (sub -> backend );
93
- }
94
- }
95
-
96
- return CLOCK_MONOTONIC ;
97
- }
98
-
99
85
static int multi_backend_get_drm_fd (struct wlr_backend * backend ) {
100
86
struct wlr_multi_backend * multi = multi_backend_from_backend (backend );
101
87
@@ -114,7 +100,6 @@ static const struct wlr_backend_impl backend_impl = {
114
100
.destroy = multi_backend_destroy ,
115
101
.get_renderer = multi_backend_get_renderer ,
116
102
.get_session = multi_backend_get_session ,
117
- .get_presentation_clock = multi_backend_get_presentation_clock ,
118
103
.get_drm_fd = multi_backend_get_drm_fd ,
119
104
};
120
105
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ struct wlr_backend_impl {
18
18
void (* destroy )(struct wlr_backend * backend );
19
19
struct wlr_renderer * (* get_renderer )(struct wlr_backend * backend );
20
20
struct wlr_session * (* get_session )(struct wlr_backend * backend );
21
- clockid_t (* get_presentation_clock )(struct wlr_backend * backend );
22
21
int (* get_drm_fd )(struct wlr_backend * backend );
23
22
uint32_t (* get_buffer_caps )(struct wlr_backend * backend );
24
23
};
You can’t perform that action at this time.
0 commit comments