SC5Shout
SC5Shout
🤣 🤣 🤣 I do not know whatcha taking 'bout man. what actually TF?
And how to combine them to 1 geometry?
Because every geometry is a draw call. Why to have 2 draw calls?
I was hoping that someone would know how to modify nanovg to support bilinear gradient.
Yeah, but draw elements with default triangle is faster even 5/6 times I measured. Plus you can draw many instances with one draw call. If you for example draw many...
You can have `bool openPopup` and do something like this: inside of the node's body ```cpp+ openPopup = ImGui::Button("OpenPopup"); ``` outside of the node's body ```cpp ed::Suspend(); if(openPopup) { ImGui::OpenPopup("picker");...
The same thing has to be done for combo widgets. It starts being annoying. And for the combo popups, I don't think it works. The popup window position is weird,...
You probably use the same string buffer with 2 edit texts. Please share your code, so I could be a bit more specific.