Re: Mouse drawing directly to fb0

2025-02-20 Thread Zinful
Thank you all for your help and suggestions I really I appreciate it. So the project is sorta weird cause the whole idea is to have a working, fast, and smooth GUI-like environment on a raspi-0. I wanted to do it that way to force myself to work low-level and manage resources carefully (like drawin

Re: Mouse drawing directly to fb0

2025-02-19 Thread Carsten Haitzler
On Wed, 19 Feb 2025 13:16:40 -0500 Zinful said: > Thank you all for your help and suggestions I really I appreciate it. So > the project is sorta weird cause the whole idea is to have a working, fast, > and smooth GUI-like environment on a raspi-0. I wanted to do it that way to > force myself to

Re: Mouse drawing directly to fb0

2025-02-19 Thread Carsten Haitzler
On Wed, 19 Feb 2025 09:20:45 +0100 "Enrico Weigelt, metux IT consult" said: > On 18.02.25 08:12, Carsten Haitzler wrote: > > > Advice - don't try and just bolt on a mouse with a hack. reality is to do a > > mouse, you're doing sprites/overlays and/or compositing (to do it right) so > > instead o

Re: Mouse drawing directly to fb0

2025-02-19 Thread Enrico Weigelt, metux IT consult
On 18.02.25 08:12, Carsten Haitzler wrote: Advice - don't try and just bolt on a mouse with a hack. reality is to do a mouse, you're doing sprites/overlays and/or compositing (to do it right) so instead of bolting it on with a hack, bite the bullet and work out how to do some proper compositing

Re: Mouse drawing directly to fb0

2025-02-18 Thread Zinful
It's not that I don't like it, but the mouse issue has been a thing for a few weeks and Im pretty over the mouse lol. The rest of the project so far is honestly going smoothly. Executing programs, resource management, displaying text/erasing it properly and y'know whatever else is pretty relaxed. D

Re: Mouse drawing directly to fb0

2025-02-17 Thread Carsten Haitzler
On Mon, 17 Feb 2025 16:07:56 -0500 Zinful said: > It's not that I don't like it, but the mouse issue has been a thing for a > few weeks and Im pretty over the mouse lol. The rest of the project so far > is honestly going smoothly. Executing programs, resource management, > displaying text/erasing

Re: Mouse drawing directly to fb0

2025-02-17 Thread Carsten Haitzler
On Sat, 15 Feb 2025 21:41:37 -0500 Zinful said: > I'm working on a project currently for college making a shitty GUI. I'm > having trouble getting the proper color values for around the mouse so it > overwrites drawn pixels on the screen with black. I was wondering if anyone > could peek at my co