mirror of
https://github.com/swaywm/sway.git
synced 2025-11-01 22:58:41 -04:00
Fix SIGBUS from wayland clients
This commit is contained in:
parent
665d4baaf1
commit
86372d00db
3 changed files with 4 additions and 3 deletions
|
|
@ -21,7 +21,7 @@ int main(int argc, char **argv) {
|
|||
state->width = output->width;
|
||||
state->height = output->height;
|
||||
|
||||
uint8_t r = 100, g = 100, b = 100;
|
||||
uint8_t r = 0, g = 0, b = 0;
|
||||
|
||||
do {
|
||||
if (client_prerender(state) && state->cairo) {
|
||||
|
|
@ -31,7 +31,7 @@ int main(int argc, char **argv) {
|
|||
|
||||
client_render(state);
|
||||
|
||||
r++; if (r == 0) { g++; if (g == 0) { b++; } }
|
||||
r++; g += 2; b += 4;
|
||||
}
|
||||
} while (wl_display_dispatch(state->display) != -1);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue