diff options
author | Phil Jones <philj56@gmail.com> | 2022-06-07 13:47:35 +0100 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-06-07 15:31:49 +0100 |
commit | 51bbf779ba2c9d5954e2c9470a8eae7c1ddd38a5 (patch) | |
tree | f2b52f0211f9052fefa64e23c6a0d81305391589 /src/ipc.h | |
parent | 7562d7b539d8013376de2cff494231ba307f4ee1 (diff) |
Switch from using (E)GL to wl_shm.
eglInitialize() is slow (~50-100ms), and uses a fair amount of memory
(~100 MB). For such a small, simple program that just wants to launch as
quickly as possible, wl_shm performs better.
Diffstat (limited to 'src/ipc.h')
-rw-r--r-- | src/ipc.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/ipc.h b/src/ipc.h deleted file mode 100644 index 30a953a..0000000 --- a/src/ipc.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef IPC_H -#define IPC_H - -#include <json-c/json_object.h> - -/* - * Submit an IPC request to greetd. - * - * Returns the response on success, or NULL on failure. - */ -struct json_object *ipc_submit(struct json_object *request); - -#endif /* IPC_H */ |