Michael Sartain
Michael Sartain
I really have no idea what's going on. It looks like trace-cmd itself is spewing the "No such file or directory" error? I don't have access to any GenToo systems....
Hi Wenyou. I think the issue you're running into is the same as this: https://github.com/mikesart/gpuvis/issues/50 And sorry - I'm currently working at another company and just haven't had time to...
I may try to get our new voglhook shim building with C++ and statically link libstdc++ initially (using -static-libgcc -static-libstdc++), but my experiences with that so far (testing on voglperf)...
> We using c-only ogl library in glsl-debugger This is your cpyFromProcess / cpyToProcess stuff? I think I'm going to tackle this in stages. - First switch from .spec to...
The code to find the libturbojpeg library is in build_options.cmake. Is there a good/clean way to check the library version there? If not, we could add a #ifndef check in...
Ah, this is cool. Thanks for running vogl through this. So key.get_ptr() should return a "const char *" pointer: ``` vogl_json.inl: inline bool add_key_and_parsed_value(const dynamic_string &key, const char *pValueToParse) {...
I just removed the dynamic_string version of add_key_and_parsed_value. Neither function is used right now and that will kill this warning. I'll gnaw my little toes off before using boost, but...
One thing I have on my todo list is to check whether we're going to run into issues pulling the C++ runtime libraries into the processes. If this is potentially...
Yep - good catch. Try #2...
> Maybe it would be cleaner to just lowercase everything as we pull it in, and do away with these slow case-insensitive functions? Lowercase all the headers as they come...