diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-08-29 18:31:13 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-08-29 18:31:13 -0400 |
commit | b003afc1ed681288e479bd9b7cb3aef1513e0058 (patch) | |
tree | 511214126d08fb35ab9eb63225e6d8eb6cd2dcdb | |
parent | b55b46fa07bdd92209d0d954fba1aa7d864e2607 (diff) |
Before I added the dirty tracking, this wasn't necessary because it filled
the buffer very frequently. But now, with it optimizing out calls, I was
seeing mysterious lag.
-rw-r--r-- | ggamma.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -121,6 +121,7 @@ int main(int argc, char *argv[]) { void flush(void) { XRRSetCrtcGamma(display, crtc, gamma); + XFlush(display); } GtkWidget *curve; |