Jari Vetoniemi

Results 300 comments of Jari Vetoniemi

But does swaybar render directly inside wlc? AFAIK It's separate process and doesn't probably even draw using opengl?

GL_UNSIGNED_INT is not supported in GLES2

You could look at cairo's gl implementation, but what I looked the things they do are not pretty :)

Crashing in eglSwapBuffers seems to indicate this is a driver issue.

Here is my build.rs which sanity checks all queries for syntax errors. ```rust use anyhow::Result; fn sanity_check_sql_queries() -> Result { use syn::visit::{self, Visit}; struct Visitor { db: rusqlite::Connection, in_sql_call: bool,...

@gwenn nice, if it was possible for it to also do `EXPLAIN QUERY PLAN {}` on a memory db which you can fill with schema as I do above with...

Is there any reason you aren't just using the NET_WM hint for fullscreen and toggle that? ex. http://github.com/Cloudef/monsterwm/blob/personal/monsterwm.c#L1474-1480

Good question. I have no idea and it should be tested. We may need to open xwayland for each GPU. Edit: Though this obviously does not work since we can't...

We should also autodetect primary card here, instead of assuming card0.

Prime needs basically drm backend instance for each card. Same kind of thing is needed to support multiple displays on different GPU's. All the dirty work regarding support between GPUs...