ebachard

Results 40 comments of ebachard

Hello, Thank you very much for this new method ! Just in time with my need :-) I tested your code (see screenshot). For the record, it works well, but...

@Doohl : uff, you are right, I was mistaken with KeyCtrl use. Shame on me ... In fact, in meantime, I identified another visibility issue, and the final working solution...

If I'm not wrong, on Linux, the normal way to find SDL (1.x) and SDL2 (2.0.y) is to use sdl-config [respectively] sdl2-config at configure time. Source : https://wiki.libsdl.org/Installation e.g.: **SDL**:...

Hello, Nice work ! I like the idea, but I think I'll derivate it for another usage. e.g. when you draw an annotation (not only a text), it could be...

1. Using xor and unions between shapes ? 1.1. Draw a black triangle 1.2. draw a white trapeze at the bottom of the black triangle (entered of course) 1.3. draw...

Hi, License is often a problem, and GPL is not good for me (I would have prefered LGPL at least, or better MIT), but nevermind, I'll rewrite everything I need....

Ok, thanks for your fast answer. If I can find the time, I'll give it a try. And if it works, I'll post the Cmake toolchain (possibly very close to...

Hello, FYI, I did it. Please have a look at : https://github.com/ebachard/sdl-gpu/commit/4d3f431d5b3fddde0bc7eb2647b9203aef4e85ff https://github.com/ebachard/sdl-gpu/commit/3d7a4fd0870564cc872f4c5862f301eee8a60c6a Results: - got a clean libSDL2_gpu.a at the end - the demos are built - If you...

Not sure I'm answering the question, but the code below works well for me (the trick is ImGui::IsItemClicked() ): ``` static bool enable_7m = false; // default value, the button...

@ocornut Thanks a lot for the new example, and thanks a lot for your explanations. I'm glad to learn such lessons, about being extremely precise with controls, and I'll keep...