Chris-F5

Results 11 comments of Chris-F5

Perhaps a macro should be used to switch between types. Looks like glm uses `GLM_PRECISION_HIGHP_INT`, `GLM_PRECISION_MEDIUMP_INT` and `GLM_PRECISION_LOWP_INT` to switch between using `sint64`, `signed int` and `signed short`. I don't...

I am also having this issue on Arch. This happens to me often: I want to run the binary I have open in debug mode so I `dc`. Then I...

[Here](https://github.com/Chris-F5/apriltag/commit/0ce68e62af5e14d86b3c8e63133c6f395dd2b05c) is my NOTHREADS macro implementation. If `NOTHREADS` is defined then `pthreads_cross.{c,h}` will declare and define `pthread_*` functions which return immediately (this is just so that all symbols will get...

Yes, I agree the way I was treating `pcthread_get_num_procs` was inconsistent with the rest of the pthread functions. In this commit, I now use `#ifndefs` to exclude `#include "common/pthreads_cross.h"` from...

The problem with the noop-`pthread` implementation is how do you deal with the `pthread` types. If the user has asked for `NOTHREADS` then we cant assume that their standard libraries...

Here is my best attempt at guessing weather pthread_* types and or symbols are already defined by looking at Posix macros. Not sure if this is what you had in...

Not really. If nobody else is interested we can close.

I was not storing the parser objects. I had a closer look at this and you are right, the files do get closed when the DemoParser object gets destroyed. My...

This is an awesome feature. I'm having a problem though. Steps to reproduce: 1. Clone your branch at `78bde7e0a8` 2. Navigate into `examples/natmod/features2` 3. Modify the Makefile to set `ARCH=armv7m`...

The try block is necessary to move the cursor onto the next line. If, when inserting characters past the autowrap limit, we only ran the format command then the cursor...