Colin Cornaby

Results 74 comments of Colin Cornaby

I'm having trouble building for Mac Catalyst - and my research has taken me back to this issue. It looks like the minimum version did get moved to 13.1. @imWildCat...

Another odd thing is that error is from the aarch64 version of Catalyst, but from what I can see in the source, that aarch64 version specifically should be set to...

It looks like my issue is cured by https://github.com/rust-lang/cc-rs/pull/678. The CC tooling is overriding even any change here.

Has this version been working well for people? Definitely not trying to put @niklas-ourmachinery on the spot, he just advertised it as a hack to get it compiling! But I'm...

I went through the Physx SDK changes for Apple Silicon and found that some NEON optimizations were being built only for iOS. I carefully went through and added OSX defines...

Building this for ARM64/macOS and getting the following error: ``` /Users/colincornaby/Documents/Plasma/PlasmaSrc/vcpkg/buildtrees/physx/src/be49a99479-d1b16eed08.clean/physx/source/foundation/include/unix/neon/PsUnixNeonInlineAoS.h:3582:10: error: argument value 2 is outside the valid range [0, 1] return vdupq_lane_f32(vget_low_f32(a), index); ``` The code looks like...

There are some things in this PR that shouldn't be here - I'm going to make a pass through and pull them. Most notably the cursor scale stuff ended up...

> I'm going to need a bit of convincing that a new hsIniHelper is needed vs using (or improving) something like the existing [plIniNoSectionsConfigSource](https://github.com/H-uru/Plasma/blob/master/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.h#L267-L278) and related plContainer classes I'll check...

@dpogue - I implemented a version with [plIniNoSectionsConfigSource](https://github.com/H-uru/Plasma/blob/master/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.h#L267-L278). There is an issue _and it's silly._ Python ini files are written with space as the separator. So: `Graphics.Height 900` The family...

Also worth noting why this probably is: Graphics.ini is not really an ini file. It's a script of console commands that gets executed when Plasma launches. It doesn't help everything...