因此,要在SceneKit中执行此操作,您需要首先设置blob,然后将其包装在NSData中以传递给着色器.例如// warning: coded in Safari and untestedimport simdlet points: [float2] = [[100.5, 50.5], [110.5, 60.5], /* ... */ ]// make sure you have 100...let data = NSData(bytes: points, length: points.count * sizeof(float2))material.setValue(data, forKey: "points")此外,当您处理单点时,SceneKit将处理从CGPoint到GPU vec2的布局转换,但是当您传递数据块时,所有SceneKit都知道这是数据块. ..它无法查看内部并根据GPU的预期调整布局,因为它不知道您提供的布局是什么.因此,您应该使用与GPU着色器中所需的大小和布局明确匹配的类型.这意味着没有CGPoint-它的组件是CGFloat,并且该类型的大小在CPU体系结构之间有所不同. SIMD库中的float2类型与GL vec2紧密匹配,而与金属float2完全匹配.I'm trying to pass in an array of points into a shader modifier in SceneKit, but I can't work out the correct syntax. In my shader extension code I have:uniform vec2 points[100];If I call… material.setValue(NSValue(point: CGPoint(x: 100.5, y: 50.5)), forKey: "points")…then it sets the value of points[0], which makes me think that maybe it's not possible. I've tried lots of other combinations for both the key and the value, but nothing seems to work.Is there a better way to do this? My end goal is to modify the surface diffuse colour for a set of points in the array, and use the default rendering otherwise. Is there a better way to do this in the shader than looping over an array of vec2s?Thanks for your help. 解决方案 A shader array variable is just a blob of data passed from the GL client to the GPU, with some size and layout agreed upon in the shader code.So, to do this in SceneKit, you'll need to first set up your blob, then wrap it in an NSData to pass to the shader. e.g.// warning: coded in Safari and untestedimport simdlet points: [float2] = [[100.5, 50.5], [110.5, 60.5], /* ... */ ]// make sure you have 100...let data = NSData(bytes: points, length: points.count * sizeof(float2))material.setValue(data, forKey: "points")Also, when you're working with single points, SceneKit will handle the layout conversion from CGPoint to GPU vec2, but when you pass a blob of data, all SceneKit knows is that it's a blob of data... it can't look inside and adjust the layout for what the GPU might expect, because it doesn't know what the layout you provided is.So, you should use types that explicitly match the size and layout that you want in the GPU shader. That means no CGPoint—its components are CGFloat, and that type's size changes between CPU architectures. The float2 type from the SIMD library is a close match for GL vec2 and an exact match for Metal float2. 这篇关于带有GLSL数组的SceneKit着色器修改器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
06-05 01:16
查看更多