gpt4 book ai didi

c++ - 找不到 GLSL 着色器统一位置

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:21:18 25 4
gpt4 key购买 nike

我正在处理顶点蒙皮着色器,但出于某种原因,我的程序找不到统一的位置。

顶点着色器代码:

#version 330

const int MAX_JOINTS = 30;
const int MAX_WEIGHTS = 3;

in vec3 position;
in vec2 textureCoords;
in vec3 normal;
in ivec3 boneIndices;
in vec3 weights;

out vec4 fragPos;
out vec3 n;
out vec2 texCoords;
out vec4 mcolor;


uniform mat4 modelMatrix;
uniform mat4 projectionMatrix;
uniform mat4 viewMatrix;
uniform mat4 normalMatrix;

uniform mat4[MAX_JOINTS] boneTransforms;


void main() {



vec4 totalLocalPos = vec4(0.0);
vec4 totalNormal = vec4(0.0);

for(int i = 0; i < 3; i++){
mat4 boneTransform = boneTransforms[boneIndices[i]];
vec4 posePosition = boneTransform * vec4(position, 1);
totalLocalPos += posePosition * weights[i];

vec4 worldNormal = boneTransform * vec4(normal, 1);
totalNormal += worldNormal * weights[i];
}
texCoords = textureCoords;

fragPos = modelMatrix * vec4(position,1);

n = totalNormal.xyz;


gl_Position = projectionMatrix * viewMatrix * modelMatrix * totalLocalPos;
}

boneTransforms 制服似乎设置不正确;如果我用

查询现役制服
GLint uniforms;
glGetProgramiv(shaderProgramID, GL_ACTIVE_UNIFORMS, &uniforms);
for (int i = 0; i < uniforms; i++){
int name_len = -1, num = -1;
GLenum type = GL_ZERO;
char name[100];
glGetActiveUniform(shaderProgramID, GLuint(i), sizeof(name) - 1,
&name_len, &num, &type, name);
name[name_len] = 0;

}

我总是得到零;但是,如果我只是把 gl_Position = projectionMatrix * viewMatrix * modelMatrix * vec4(position,1) 我得到预期的结果(没有任何顶点蒙皮的正确渲染),所以其他变换似乎在工作,尽管它告诉我它们没有存在? 编辑:有时是这种情况,其他时候我在位置 (0,0,0) 获得模型,但在其他情况下正确渲染。

我读过有关编译器剥离未使用/非事件制服的信息,但如果我使用 boneTransforms 计算 totalLocalPos 并将其用于 gl_Positions,则制服应该处于事件状态。

我尝试设置制服

vector<glm::mat4> boneTransforms = model.getBoneTransforms();
int location = glGetUniformLocation(shaderProgramID, "boneTransforms");
glUniformMatrix4fv(location, boneTransforms.size(), false, (GLfloat*)&boneTransforms);

位置总是-1。我尝试设置此特定制服的方式有问题,还是着色器代码中有错误?

EDIT2:我刚刚注意到当我从场景中添加或删除对象(使用不同的着色器)时,我的着色器的行为发生了变化。我不知道该怎么做。
EDIT3:如果我从我的场景中删除所有其他网格,着色器会因访问冲突而崩溃。只要正在渲染另一个对象,目前就不会发生崩溃。
另一个编辑:显然访问权重变量会使我的着色器崩溃。

最佳答案

我正在阅读这里找到的关于顶点蒙皮着色器的快速教程:khronos并且它似乎使用的是稍旧版本的 GLSL 他们如何提及 MVP 矩阵(模型 View 投影矩阵)或在您的情况下 PVM 矩阵(投影 View 模型矩阵)与 vec4 的乘法总计position 在你的情况下并将其存储回 gl_Position 并且他们声称 w 可能并不总是具有 1 的值所以为了安全他们建议改为这样做,我将使用您的代码作为示例来解决这个可能的问题。

改变这个:

gl_Position = projectionMatrix * viewMatrix * modelMatrix * totalLocalPos;

对此:

gl_Position = projectionMatrix * viewMatrix * modelMatrix * vec4(totalLocalPos.xyz, 1.0);

看看这是否对您有帮助。我不知道这是否是您问题的原因,但从您展示的情况来看,除此之外,您的着色器似乎没问题。

关于c++ - 找不到 GLSL 着色器统一位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44324908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com