aboutsummaryrefslogtreecommitdiff
path: root/example/simple.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-06-22 11:15:59 -0400
committerDrew DeVault <sir@cmpwn.com>2017-06-22 11:15:59 -0400
commitf5423a51b559a0fc0d51f7a11cdaf82789a058c9 (patch)
treebdf287b0571044e94fb59d38daf999f67472c276 /example/simple.c
parent8ce9237c928a7dc6afb889291237465daf4d6b43 (diff)
Use wl_display_run and refactor example keyboards
Diffstat (limited to 'example/simple.c')
-rw-r--r--example/simple.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/example/simple.c b/example/simple.c
index cb3a194c..8a01fab8 100644
--- a/example/simple.c
+++ b/example/simple.c
@@ -38,15 +38,6 @@ void handle_output_frame(struct output_state *output, struct timespec *ts) {
glClear(GL_COLOR_BUFFER_BIT);
}
-static void handle_keyboard_key(struct keyboard_state *kbstate,
- xkb_keysym_t sym, enum wlr_key_state key_state) {
- if (sym == XKB_KEY_Escape) {
- kbstate->compositor->exit = true;
- } else if (key_state == WLR_KEY_PRESSED && sym >= XKB_KEY_F1 && sym <= XKB_KEY_F12) {
- wlr_session_change_vt(kbstate->compositor->session, sym - XKB_KEY_F1 + 1);
- }
-}
-
int main() {
struct sample_state state = {
.color = { 1.0, 0.0, 0.0 },
@@ -55,7 +46,6 @@ int main() {
struct compositor_state compositor = { 0,
.data = &state,
.output_frame_cb = handle_output_frame,
- .keyboard_key_cb = handle_keyboard_key,
};
compositor_init(&compositor);
compositor_run(&compositor);