-
Notifications
You must be signed in to change notification settings - Fork 549
Metal tvOS xcode16.0 b3
Rolf Bjarne Kvinge edited this page Jul 9, 2024
·
2 revisions
#Metal.framework
diff -ruN /Applications/Xcode_16.0.0-beta2.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLogState.h /Applications/Xcode_16.0.0-beta3.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLogState.h
--- /Applications/Xcode_16.0.0-beta2.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLogState.h 2024-06-12 21:48:22
+++ /Applications/Xcode_16.0.0-beta3.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLogState.h 2024-06-29 07:24:33
@@ -32,10 +32,9 @@
@protocol MTLLogState <NSObject>
/*!
@method addLogHandler
-@abstract addLogHandler is a way to add one or more function blocks to handle log message output.
-Here, developers can create custom filter or add their own ways to obtain logged messages.
-In absence of logHandler, all the log messages will go through default handler
- */
+@abstract Add a function block to handle log message output.
+In the absence of any handlers, log messages go through the default handler.
+*/
- (void)addLogHandler:(void(^)(NSString* __nullable subSystem, NSString* __nullable category, MTLLogLevel logLevel, NSString* message))block;
@end