Tim Finer

Results 22 comments of Tim Finer

This page has a lot of good information on what you are allowed to do in DllMain: https://learn.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-best-practices Try Application Verifier, it might add more information, but it sounds like...

Are there any globals (or static data structures) that are calling OS code in the library? Those get initialized and code run in them at load. I can't tell you...

For my case, running on Windows, I had to comment out some calls that change a URL path into an OS filesystem path. If you are running on windows, you...

I was able to build on an M2 with OIDN: 1. installed oidn via homebrew 2. deleted thirdparty/oidn 3. changed CMakeLists.txt: ``` set(OIDN_LIBDIR /opt/homebrew/lib) include_directories(/opt/homebrew/include) deleted all the backslash junk...

I understand why you added it, I'm saying that to me, the it is inconsistent to allocate for Z, then say it doesn't have Z, return XYZ _as a type_,...

@mariru27 Thank you! I will try it out later today and report back.

I just got bit by this define deep down in CoordinateSequence: GEOS_COORDSEQ_PADZ which erroneously makes space for Z's, but then crucially, _does not set hasZ_! Yet, when you ask a...

I read the comment (buried in the cpp file mind you), I am saying that it was not a good design choice. Offering dimension parameters that are ignored is surprising...

I don't know enough about GEOS, but does it make sense to make templated collections like good old STL? Another option might be to extend the type system to the...