X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fmain.cpp;h=c343a6672a9cf66613c0c6ba24176fde978ba30a;hb=ccad564c1621ba8aa69ce47ea9374da373b0bcce;hp=146020e87c1465575fdfead97ce8239a28ea4b72;hpb=0794731455fbf919882c8a9cc03dd42c66117a93;p=staging%2Fwindowmanager.git diff --git a/src/main.cpp b/src/main.cpp index 146020e..c343a66 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,17 +19,17 @@ namespace { // | (__| | | | __/ (__| < | __/\ V / __/ | | | |_\__ \ | | | // \___|_| |_|\___|\___|_|\_\___\___| \_/ \___|_| |_|\__|___/ | | | // |_____| \_\/_/ -int check_events(struct wl::display *d, struct conn *c, int fd) { - struct pollfd pfd[2] = {{.fd = d->get_fd(), .events = POLLIN, .revents = 0}, +int check_events(struct wl::display &d, struct conn &c, int fd) { + struct pollfd pfd[2] = {{.fd = d.get_fd(), .events = POLLIN, .revents = 0}, {.fd = fd, .events = POLLIN, .revents = 0}}; - d->flush(); + d.flush(); if (poll(pfd, fd != -1 ? 2 : 1, -1) != -1 && errno != EINTR) { int ret = 0; if (pfd[0].revents & POLLIN) { - ret = d->dispatch(); + ret = d.dispatch(); } if (ret == -1) @@ -43,9 +43,9 @@ int check_events(struct wl::display *d, struct conn *c, int fd) { ; // Display current status - if (!c->c->surfaces.empty()) { + if (!c.c->surfaces.empty()) { puts("Surfaces:"); - for (auto const &i : c->c->surfaces) { + for (auto const &i : c.c->surfaces) { auto const &r = i.second->dst_rect; auto const &s = i.second->size; printf("%d [%ux%u] (%ux%u@%dx%d), ", i.first, s.w, s.h, r.w, r.h, @@ -54,9 +54,9 @@ int check_events(struct wl::display *d, struct conn *c, int fd) { puts("\b\b "); } - if (!c->c->layers.empty()) { + if (!c.c->layers.empty()) { puts("Layers:"); - for (auto const &i : c->c->layers) { + for (auto const &i : c.c->layers) { auto const &r = i.second->dst_rect; auto const &s = i.second->size; printf("%d [%ux%u] (%ux%u@%dx%d), ", i.first, s.w, s.h, r.w, r.h, @@ -91,8 +91,8 @@ void init_layout(struct conn &c) { s->clear(); // Setup our dummy scene... - c.c->layer_create(100, 0, 0); // bottom layer, anything else - c.c->layer_create(1000, 0, 0); // top layer, mandelbrot + c.c->layer_create(100, 0, 0); // bottom layer, anything else + c.c->layer_create(1000, 0, 0); // top layer, mandelbrot auto &l100 = c.c->layers[100]; auto &l1k = c.c->layers[1000]; @@ -121,28 +121,28 @@ int main(int argc, char **argv) { if (!getenv("XDG_RUNTIME_DIR")) fatal("Environment variable XDG_RUNTIME_DIR not set"); - auto d = std::make_unique(); - if (!d->ok()) + struct wl::display d {}; + if (!d.ok()) fatal("Could not connect to compositor"); - struct conn c{}; + struct conn c {}; - d->r.add_global_handler( + d.r.add_global_handler( "ivi_controller", [&c](wl_registry *r, uint32_t name, uint32_t v) { c.c = std::make_unique(r, name, v); }); - d->r.add_global_handler( + d.r.add_global_handler( "wl_output", [&c](wl_registry *r, uint32_t name, uint32_t v) { c.outputs.emplace_back(std::make_unique(r, name, v)); }); // First level objects - d->roundtrip(); + d.roundtrip(); // Second level objects - d->roundtrip(); + d.roundtrip(); // Third level objects - d->roundtrip(); + d.roundtrip(); if (!c.c) fatal("ivi_controller global not available"); @@ -152,12 +152,12 @@ int main(int argc, char **argv) { init_layout(c); - while (check_events(d.get(), &c, STDIN_FILENO) != -1) { + while (check_events(d, c, STDIN_FILENO) != -1) { c.c->execute_pending(); - d->flush(); + d.flush(); } - d->roundtrip(); + d.roundtrip(); return 0; }