blob: 43325cf4cf3a1085dc47550fbcf3d44f638aa43c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#define _POSIX_C_SOURCE 200809L
#include <stdlib.h>
#include "types/wlr_output.h"
void output_pending_resolution(struct wlr_output *output,
const struct wlr_output_state *state, int *width, int *height) {
if (state->committed & WLR_OUTPUT_STATE_MODE) {
switch (state->mode_type) {
case WLR_OUTPUT_STATE_MODE_FIXED:
*width = state->mode->width;
*height = state->mode->height;
return;
case WLR_OUTPUT_STATE_MODE_CUSTOM:
*width = state->custom_mode.width;
*height = state->custom_mode.height;
return;
}
abort();
} else {
*width = output->width;
*height = output->height;
}
}
|