【发布时间】:2015-12-09 17:50:55
【问题描述】:
我正在尝试在SceneKit 中捣乱并自学。基本上,我正在创建一个具有 3 个矩形边和 1 个倾斜幻灯片的四边形。
我希望我的纹理在表面上拉伸和翘曲/变形。
在线阅读一些东西,似乎我需要使用自定义顶点和片段着色器制作SCNProgram 才能获得效果。但是,我似乎无法让纹理遍布整个表面。请需要帮助。 (我是图形编程的新手,因此试图自学)。
我创建几何和纹理的 Swift 代码如下:
func geometryCreate() -> SCNNode {
let verticesPosition = [
SCNVector3Make(0.0, 0.0, 0.0),
SCNVector3Make(5.0, 0.0, 0.0),
SCNVector3Make(5.0, 5.0, 0.0),
SCNVector3Make(0.0, 3.0, 0.0)
]
let textureCord = [CGPoint (x: 0.0,y: 0.0), CGPoint(x: 1.0,y: 0.0), CGPoint(x: 1.0,y: 1.0), CGPoint(x: 0.0,y: 1.0)]
let indices: [CInt] = [
0, 2, 3,
0, 1, 2
]
let vertexSource = SCNGeometrySource(vertices: verticesPosition, count: 4)
let srcTex = SCNGeometrySource(textureCoordinates: textureCord, count: 4)
let date = NSData(bytes: indices, length: sizeof(CInt) * indices.count)
let scngeometry = SCNGeometryElement(data: date, primitiveType: SCNGeometryPrimitiveType.Triangles, primitiveCount: 2, bytesPerIndex: sizeof(CInt))
let geometry = SCNGeometry(sources: [vertexSource,srcTex], elements: [scngeometry])
let program = SCNProgram()
if let filepath = NSBundle.mainBundle().pathForResource("vertexshadertry", ofType: "vert") {
do {
let contents = try NSString(contentsOfFile: filepath, encoding: NSUTF8StringEncoding) as String
program.vertexShader = contents
} catch {
print("**** happened loading vertex shader")
}
}
if let fragmentShaderPath = NSBundle.mainBundle().pathForResource("fragshadertry", ofType:"frag")
{
do {
let fragmentShaderAsAString = try NSString(contentsOfFile: fragmentShaderPath, encoding: NSUTF8StringEncoding)
program.fragmentShader = fragmentShaderAsAString as String
} catch {
print("**** happened loading frag shader")
}
}
program.setSemantic(SCNGeometrySourceSemanticVertex, forSymbol: "position", options: nil)
program.setSemantic(SCNGeometrySourceSemanticTexcoord, forSymbol: "textureCoordinate", options: nil)
program.setSemantic(SCNModelViewProjectionTransform, forSymbol: "modelViewProjection", options: nil)
do {
let texture = try GLKTextureLoader.textureWithCGImage(UIImage(named: "stripes")!.CGImage!, options: nil)
geometry.firstMaterial?.handleBindingOfSymbol("yourTexture", usingBlock: { (programId:UInt32, location:UInt32, node:SCNNode!, renderer:SCNRenderer!) -> Void in
glTexParameterf(GLenum(GL_TEXTURE_2D), GLenum(GL_TEXTURE_WRAP_S), Float(GL_CLAMP_TO_EDGE) )
glTexParameterf(GLenum(GL_TEXTURE_2D), GLenum(GL_TEXTURE_WRAP_T), Float(GL_CLAMP_TO_EDGE) )
glTexParameterf(GLenum(GL_TEXTURE_2D), GLenum(GL_TEXTURE_MAG_FILTER), Float(GL_LINEAR) )
glTexParameterf(GLenum(GL_TEXTURE_2D), GLenum(GL_TEXTURE_MIN_FILTER), Float(GL_LINEAR) )
glBindTexture(GLenum(GL_TEXTURE_2D), texture.name)
})
} catch {
print("Texture not loaded")
}
geometry.firstMaterial?.program = program
let scnnode = SCNNode(geometry: geometry)
return scnnode
}
我的顶点着色器是:
attribute vec4 position;
attribute vec2 textureCoordinate;
uniform mat4 modelViewProjection;
varying highp vec2 pos;
varying vec2 texCoord;
void main() {
texCoord = vec2(textureCoordinate.s, 1.0 - textureCoordinate.t) ;
gl_Position = modelViewProjection * position;
pos = vec2(position.x, 1.0 - position.y);
}
我的片段着色器是:
precision highp float;
uniform sampler2D yourTexture;
varying highp vec2 texCoord;
varying highp vec2 pos;
void main() {
gl_FragColor = texture2D(yourTexture, vec2(pos.x, pos.y));
}
我似乎无法让左下角的纹理遍布整个表面。你能帮忙吗?
做一些手动顶点和片段着色器杂耍,我可以得到结果,但感觉很不雅,我很确定它不应该写这样的特定代码。
attribute vec4 position;
attribute vec2 textureCoordinate;
uniform mat4 modelViewProjection;
varying highp vec2 pos;
varying vec2 texCoord;
void main() {
// Pass along to the fragment shader
texCoord = vec2(textureCoordinate.s, 1.0 - textureCoordinate.t) ;
// output the projected position
gl_Position = modelViewProjection * position;
pos = vec2(position.x, position.y);
}
片段着色器的更改(其中 0.4 是四边形顶部的斜率):
precision highp float;
uniform sampler2D yourTexture;
varying highp vec2 texCoord;
varying highp vec2 pos;
void main() {
gl_FragColor = texture2D(yourTexture, vec2(pos.x/5.0, 1.0 - pos.y/(3.0+0.4*pos.x)));
// gl_FragColor = vec4 (0.0, pos.y/5.0, 0.0, 1.0);
}
这正是我正在寻找的东西,但感觉非常错误的做事方式。
编辑:我使用的是 pos 变量而不是 texCoord,因为 texCoord 给了我非常奇怪的结果,我无法真正理解 :(。
如果我将片段着色器修改为:
precision highp float;
uniform sampler2D yourTexture;
varying highp vec2 texCoord;
varying highp vec2 pos;
void main() {
// gl_FragColor = texture2D(yourTexture, vec2(pos.x/5.0, 1.0 - pos.y/(3.0+0.4*pos.x)));
gl_FragColor = texture2D(yourTexture, texCoord);
// gl_FragColor = vec4 (0.0, pos.y/5.0, 0.0, 1.0);
}
这告诉我我的纹理坐标定义有问题,但我不知道是什么?
EDIT2:好的进展。根据 Lock 在相关线程上给出的答案,我使用以下方法重新定义了我的 uvs:
let uvSource = SCNGeometrySource(data: uvData,
semantic: SCNGeometrySourceSemanticTexcoord,
vectorCount: textureCord.count,
floatComponents: true,
componentsPerVector: 3,
bytesPerComponent: sizeof(Float),
dataOffset: 0,
dataStride: sizeof(vector_float2))
现在,当我在片段着色器中使用 texCoord 时,它给了我这样的结果:
它没有我在上面的纹理中得到的弯曲变形那么大。但它的进步。有什么想法可以让它像这个 Massive question 中的图 2 一样平滑吗?
请帮忙。
【问题讨论】:
-
干得好@AdiTheExplorer。您只需要调整左上角的纹理坐标,而不是 0,1,它将位于 0,0.6 (3/5) 以停止变形。 FWIW,我看不出你生成纹理坐标的代码有什么问题,但显然有些地方不太对劲。
-
谢谢@lock。但我实际上确实希望它像这个线程中的 pic 2 那样变形,以获得纹理中的漂亮曲线?它在两个三角形上均匀变形。顺便说一句,你帮了大忙。没有它就无法做到:)
-
很公平。在这种情况下,它可能是您要调整的右上角坐标,将这个 y 坐标调低会将其拉伸。它可能仍然不会给您在图 2 中看到的变形,这是您计算纹理坐标的创造性方程式。您可能可以使用 uv 复制它,现在它们没问题(
gl_FragColor = texture2D(yourTexture, vec2(texCoord.x, texCoord.y/(0.4*texCoord.x)));也许......)。但是,通常您的纹理图像中已经存在变形,允许使用标准着色器。
标签: ios opengl-es ios9 scenekit fragment-shader