Posts

Post not yet marked as solved
3 Replies
2.6k Views
Since I installed the beta version of macOS Monterey, I get flooded with entries in the console which all say the same line: [default] invalid display identifier Main I have no idea why and what to look for. Any suggestions?
Posted Last updated
.
Post not yet marked as solved
2 Replies
673 Views
My MTLBuffer is created with the standard MTLResourceStorageModeShared option and I get the pointer to the system memory using the contents method. This works fine on Catalina and Big Sur but my testers on Sierra and High Sierra report that the application crashes. Evaluating the crash reports tell me that the contents method returns a Null pointer. What am I missing? typedef struct KaroMetalLineData KaroMetalLineData; struct KaroMetalLineData{  packed_float2 p1;  packed_float2 p2;  packed_float4 color;  float arg1;  float arg2;  float blend;  int32_t type; }; ...    size_t inputBufferSize = sizeof(KaroMetalLineData) * lineCount; /* is guaranteed to be not zero! */ idMTLBuffer lineInputBuffer = [metal-device newBufferWithLength:inputBufferSize options:(MTLResourceOptions)0]; KaroMetalLineData* localInput = [lineInputBuffer contents];   memcpy(localInput, someSource, inputBufferSize); /* someSource is guaranteed to exist and have enough space*/ ...
Posted Last updated
.
Post not yet marked as solved
1 Replies
528 Views
I am a paying, verified Developer since years and I regularily renew my account, my profiles, my certificates, XCode and I always verify my apps with the app store.But distributing a newly updated app signed with my developer ID now shows the "untrusted developer" warning for my clients.My app is signed, it is verified with the App store, XCode and System is on the latest version, my keychain has no expired certificates, all is in perfect order, verifying with the app store and exporting the same archive revealed not a single issue, warning or hickup. What is wrong here? Are there any other people having the same problem?
Posted Last updated
.