Post

Replies

Boosts

Views

Activity

Reply to Unreal Engine / Path tracer
Metal already have all the required API to implement raytracing. So probably there is nothing preventing Epic or Twinmotion from implementing it in Unreal or Twinmotion. However, to get good performance you will have to wait for an Apple Silicon GPU with raytracing acceleration.
Topic: Graphics & Games SubTopic: General Tags:
Oct ’23
Reply to Safari 17.3 - Where did Menu Item Develop: Disable Java go?
Safari stopped supporting NPAPI (and similar types) plugins in version 12. But maybe someone out were wrote a Java Applet to Webassembly conversion tool.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to adding recent open document list in non document based app
[NSDocumentController.sharedDocumentController noteNewRecentDocumentURL:URL] or something like that.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to Error on notarizing app in Electron JS
As written at the end of your message, altool is not supported anymore, it has been replaced by notarytool. https://developer.apple.com/documentation/technotes/tn3147-migrating-to-the-latest-notarization-tool?changes=_3_3
Topic: Code Signing SubTopic: Notarization Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to Files locked and cannot make them local to edit
Did you clone the git repository on iCloud Drive or another file storage service? That often doesn't mix well.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to C++ std::stable_sort crashes on iOS 12
Try to switch back to the old linker. Xcode 15 ships with a new linker that might cause issues on older iOS versions (it definitely has issues on older macOS versions).
Replies
Boosts
Views
Activity
Dec ’23
Reply to Mac App's container changing when the app is signed
Probably you are signing it with different entitlements. It looks like your unsigned app is sandboxed, but when you sign it you use an entitlements file with sandbox disabled (or no entitlements file at all).
Replies
Boosts
Views
Activity
Nov ’23
Reply to TextKit 1 anti-aliasing on macOS Sonoma
There is a similar (maybe?) issue that is replicable for example by opening Safari info window, and clicking on the Version or on the Copyright textfield. When clicked, the text will become blurry.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Nov ’23
Reply to C# Cocoa app, button images stretched
Probably another victim of the clipsToBound change. NSView clipsToBound is set to false when compiling with the macOS 14 SDK. If the code drawing the button uses the dirty rect instead of the bounds, it will draw in weird way. Is that button image drawn by a subclass you wrote?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Unreal Engine / Path tracer
Metal already have all the required API to implement raytracing. So probably there is nothing preventing Epic or Twinmotion from implementing it in Unreal or Twinmotion. However, to get good performance you will have to wait for an Apple Silicon GPU with raytracing acceleration.
Topic: Graphics & Games SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to FileMerge won't run on macOS 12.7
Xcode 14.3 requires Ventura, I guess FileMerge deployment target was set to macOS 13.
Replies
Boosts
Views
Activity
Oct ’23
Reply to Does macOS support h265 hardware accelerated encoding
You can use VideoToolBox API to list all the available encoders on your Mac or iOS device.
Topic: Media Technologies SubTopic: Video Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Does macOS support h265 hardware accelerated encoding
Yes, if the hardware supports it. I think 2017 or newer. Apple Silicon supports HEVC 10bit and 4:2:2 too.
Topic: Media Technologies SubTopic: Video Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to AVAssetWriter error -12743 appending HDR Metadata
Why the propertyListRepresentation? The kCVImageBufferAmbientViewingEnvironmentKey should be in the binary format defined in ITU-T H.274. So you should get the data directly as is and pass it to new buffer, a plist won't work.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to NSView blurry in Sonoma, in app and Xcode 15
Did you try to set the clip to bounds property to true?
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Window updates are broken on Sonoma
There was a thread on the "Appkit Abusers" slack about a similar issue. Official word is that it's a known issue.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Oct ’23