FunMiles

Results 59 comments of FunMiles

> What do you mean "standalone" or "subproject"? It's cmake-specific ways to use it? Standalone vs subproject is a CMake specific issue. You can put the source of a library...

> Full Linux support would duplicate looooots of configure checks, and testing them will be very difficult because the target platforms are not in our CI and/or hardly accessible for...

> > I am sure you are correct. Let's start small, but at least support basic Linux configs? > > It's not really a question of only supporting a smaller...

@lhog I'll close the glm choice question with this post with one final comment: the example of documentation is actually a typical example of "quick and dirty" that does not...

@andy-thomason I am definitely using the framework for my new code. I am discovering quite a few things to adapt and generalize. By the way, I had stated that I...

After discovering the issue for the queue and threading, I am left wondering what approach to take. Here are my notes: - Any queue submission must be under a lock...

I have a fairly complete system for synchronized queue access at https://github.com/FunMiles/Vookoo/tree/lock_guard_queues There is one example opening two windows: 06-parallelTriangles. I am ready to do a PR. I have two...

I do not have experience measuring mutex costs on Windows yet, but I've dealt with them a lot on Unix based system and they are cheap. The important thing to...

I have started doing rdtsc timings and on the Mac. Preliminary timings. They are a measurement of the whole timing for a call to the queue submit routine. Not a...

PR https://github.com/andy-thomason/Vookoo/pull/56 fixes the issue.