我正在尝试将颜色发送到着色器,但颜色会被交换, 我发送0xFF00FFFF(洋红色),但我在着色器中得到0xFFFF00FF(黄色)。
我认为通过实验来发生这样的事情:
我的顶点着色器:
#version 330 core
layout(location = 0) in vec4 position;
layout(location = 1) in vec3 normal;
layout(location = 2) in vec4 color;
uniform mat4 pr_matrix;
uniform mat4 vw_matrix = mat4(1.0);
uniform mat4 ml_matrix = mat4(1.0);
out DATA
{
vec4 position;
vec3 normal;
vec4 color;
} vs_out;
void main()
{
gl_Position = pr_matrix * vw_matrix * ml_matrix * position;
vs_out.position = position;
vs_out.color = color;
vs_out.normal = normalize(mat3(ml_matrix) * normal);
}
片段着色器:
#version 330 core
layout(location = 0) out vec4 out_color;
in DATA
{
vec3 position;
vec3 normal;
vec4 color;
} fs_in;
void main()
{
out_color = fs_in.color;
//out_color = vec4(fs_in.color.y, 0, 0, 1);
//out_color = vec4((fs_in.normal + 1 / 2.0), 1.0);
}
以下是我设置网格的方法:
struct Vertex_Color {
Vec3 vertex;
Vec3 normal;
GLint color; // GLuint tested
};
std::vector<Vertex_Color> verts = std::vector<Vertex_Color>();
[loops]
int color = 0xFF00FFFF; // magenta, uint tested
verts.push_back({ vert, normal, color });
glBufferData(GL_ARRAY_BUFFER, verts.size() * sizeof(Vertex_Color), &verts[0], GL_DYNAMIC_DRAW);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, sizeof(Vertex_Color), (const GLvoid*)0);
glEnableVertexAttribArray(0);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, sizeof(Vertex_Color), (const GLvoid*)(offsetof(Vertex_Color, normal)));
glEnableVertexAttribArray(1);
glVertexAttribPointer(2, 4, GL_UNSIGNED_BYTE, GL_TRUE, sizeof(Vertex_Color), (const GLvoid*)(offsetof(Vertex_Color, color)));
glEnableVertexAttribArray(2);
以下是一些例子:
我无法弄清楚出了什么问题。提前谢谢。
答案 0 :(得分:4)
您的代码将int
重新解释为内存中的4个连续字节。 int
(以及所有其他类型)的内部编码是特定于机器的。在您的情况下,您有以little endian字节顺序存储的32位整数,这是PC环境的典型情况。
您可以使用类似GLubyte color[4]
的数组来明确获取已定义的内存布局。
如果你真的想要使用整数类型,你可以将数据作为整数属性发送glVertexAttribIPointer
(注意我在那里)并使用unpackUnorm4x8
om着色器来获得标准化浮点数向量。但是,这至少需要GLSL 4.10,并且效率可能低于标准方法。