Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

ios - SceneKit shader modifiers with GLSL arrays

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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 untested

import simd
let 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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.8k users

...