-
Notifications
You must be signed in to change notification settings - Fork 576
ComputeGraph iOS xcode27.0 b5
Alex Soto edited this page Aug 10, 2026
·
1 revision
#ComputeGraph.framework
diff -ruN /Applications/Xcode_27.0.0-beta4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ComputeGraph.framework/Headers/ComputeGraphDebugDraw.h /Applications/Xcode_27.0.0-beta5.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ComputeGraph.framework/Headers/ComputeGraphDebugDraw.h
--- /Applications/Xcode_27.0.0-beta4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ComputeGraph.framework/Headers/ComputeGraphDebugDraw.h 2026-07-08 07:30:11
+++ /Applications/Xcode_27.0.0-beta5.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ComputeGraph.framework/Headers/ComputeGraphDebugDraw.h 2026-08-04 13:49:08
@@ -13,8 +13,8 @@
{
namespace api
{
-PS_API void lines(thread debug_draw_context_t &, metal::array_ref<float3> points, half4 color);
-PS_API void line_strip(thread debug_draw_context_t &, metal::array_ref<float3> points, half4 color);
+PS_API void lines(thread debug_draw_context_t &, metal::array_ref<thread float3> points, half4 color);
+PS_API void line_strip(thread debug_draw_context_t &, metal::array_ref<thread float3> points, half4 color);
PS_API bool enabled(thread debug_draw_context_t &);
PS_API thread debug_draw_context_t &graph_debug_draw_context(thread graph_context_t &);
@@ -40,12 +40,12 @@
debugdraw::api::lines(context, points, color);
}
- PS_ALWAYS_INLINE void lines(metal::array_ref<float3> points, half4 color)
+ PS_ALWAYS_INLINE void lines(metal::array_ref<thread float3> points, half4 color)
{
debugdraw::api::lines(context, points, color);
}
- PS_ALWAYS_INLINE void line_strip(metal::array_ref<float3> points, half4 color)
+ PS_ALWAYS_INLINE void line_strip(metal::array_ref<thread float3> points, half4 color)
{
debugdraw::api::line_strip(context, points, color);
}
diff -ruN /Applications/Xcode_27.0.0-beta4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ComputeGraph.framework/Headers/ComputeGraphEmissionContext.h /Applications/Xcode_27.0.0-beta5.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ComputeGraph.framework/Headers/ComputeGraphEmissionContext.h
--- /Applications/Xcode_27.0.0-beta4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ComputeGraph.framework/Headers/ComputeGraphEmissionContext.h 2026-07-08 07:30:11
+++ /Applications/Xcode_27.0.0-beta5.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ComputeGraph.framework/Headers/ComputeGraphEmissionContext.h 2026-08-04 13:49:08
@@ -16,7 +16,6 @@
{
PS_API void spawn(thread emitter::context_t &, int count);
PS_API thread graph_context_t &graph_context(thread emitter::context_t &);
-
PS_API float lifetime(thread emitter::context_t &);
}
}