diff options
author | Mattias Andrée <maandree@kth.se> | 2016-12-18 20:11:51 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-12-18 20:11:51 +0100 |
commit | 8e58eab57831515ed6cf4cc04f55db00d431ef84 (patch) | |
tree | d32af7312ea5f8fb81721f856ae681c9adca30b4 /src/cg-limits.c | |
parent | cg-base: add filters_n (diff) | |
download | cg-tools-8e58eab57831515ed6cf4cc04f55db00d431ef84.tar.gz cg-tools-8e58eab57831515ed6cf4cc04f55db00d431ef84.tar.bz2 cg-tools-8e58eab57831515ed6cf4cc04f55db00d431ef84.tar.xz |
struct filter_update: add crtc
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/cg-limits.c')
-rw-r--r-- | src/cg-limits.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cg-limits.c b/src/cg-limits.c index 2e342e9..5d9b05a 100644 --- a/src/cg-limits.c +++ b/src/cg-limits.c @@ -649,7 +649,7 @@ int start(void) if ((brightness_names == NULL) && (contrast_names == NULL)) for (i = 0, r = 1; i < filters_n; i++) { - if (!(crtc_updates[i].master) || !(crtc_info[i].supported)) + if (!(crtc_updates[i].master) || !(crtc_info[crtc_updates[i].crtc].supported)) continue; if (!xflag) if ((r = fill_filter(&(crtc_updates[i].filter), rbrightness, rcontrast, @@ -673,7 +673,7 @@ int start(void) char** cnames = contrast_names ? contrast_names : ∅ for (i = 0, r = 1; i < filters_n; i++) { - if (!(crtc_info[i].supported)) + if (!(crtc_info[crtc_updates[i].crtc].supported)) continue; for (j = 0; bnames[j] != NULL; j++) if (!strcasecmp(crtc_updates[i].filter.crtc, bnames[j])) |