@SebAaltonen when you release the source code of the mini engine, will it include all these subsystems and basic stuff around aswell? really interested into your coding style when reading your stuff.
@rfleury without wanting to sound harsh or pushing, any eta when linux support will be improved? I'm waiting for linux support because the current available linux debuggers suck big time imho. but I know that it's planned first to be windows and afterwards linux..
@ocornut@Calveit@ocornut I think you misunderstood the tweet, it's about the allocations done by different versions of NOTEPAD. not about imgui itself.
@NOTimothyLottes no floats ever logged? or some "agreement" that it's always multiplied by 100000 or something like that? besides, interesting (low-level) ideas I really like :)
@NOTimothyLottes would be interesting to see actual code, expect it to be very dense. not sure if I could really read it, but interesting concepts for sure in your presentation! looking forward to a follow-up with more infos!
@rfleury is that parallel stuff is very error prone when not using some "patterns" provided by base libraries because doing it manually you often forget something and debugging is a nightmare (esp. with current debuggers which you want to fix ;) )
@rfleury I`ve seen your changes about async and have the feeling it`s some sort of design-pattern, do you plan to write something about your pattern? (lane-stuff and wavefront stuff). and why not some sort of abstraction for this stuff (my experience
@azmreece@LubaRaphael@vkrajacic btw implicit freelists can help in that cases aswell because they're "free" from memory-pov (if elements are bigger than index) and keep the indices stable during deletions.
@azmreece@LubaRaphael@vkrajacic yeah,but the pointer to the last element is also not stable with the exchangeAndDelete ;) I use that as optimization, but in c++ many times I shoot in my foot because I'm having a reference to a not-valid-anymore struct in loops and looking for ways to detect/prevent it. thanks!
@LubaRaphael@vkrajacic@azmreece but do I understand it correctly that pushBacks have stable pointers, but not insertions in the middle and deletion from the middle also not?