我在opengl中加载纹理时遇到了问题。
我在mac上写cpp并且很难过。我不明白为什么我有这些丑陋的纹理。我正在使用stb_image.c来加载纹理,但它似乎无法正常工作。
这是我的代码:
unsigned int TextureHelper::loadTexture(std::string pathToTexture){
std::cout << "Loading " << pathToTexture << std::endl;
unsigned int img;
glGenTextures(1,&img);
glBindTexture(GL_TEXTURE_2D,img);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
/* Load Texture with stb_image */
int width, height, n;
unsigned char * data = stbi_load(pathToTexture.c_str(), &width, &height, &n, 4);
if(!data){
printf("Error, while loading texture: %s\n", stbi_failure_reason());
}else{
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, data);
stbi_image_free(data);
std::cout << "returning " << pathToTexture << " = " << img << "x" << width << "x" << height << "x" << n << std::endl;
return img;
}
std::cout << "returning " << pathToTexture << " = " << 0 << std::endl;
return 0;
}
我尝试过GL_RGBA,GL_RGBA8,GL_RGB,GL_RGBA ..但似乎没有任何效果。我错过了什么吗?
对于gl上下文,我正在使用GLFW和apple gl3.h
tex的格式是.png
这里是纹理:)
(texture - how it SHOULD look)
更新:已解决 好吧,伙计们。我已经解决了。抱歉发布;) 这是一个“有点”令人尴尬的^^ ...那里的代码工作得很好。我的问题是,我忘了设置glfw colorbits和深度......
添加此
glfwWindowHint(GLFW_RED_BITS, 8);
glfwWindowHint(GLFW_GREEN_BITS, 8);
glfwWindowHint(GLFW_BLUE_BITS, 8);
glfwWindowHint(GLFW_ALPHA_BITS, 8);
glfwWindowHint(GLFW_DEPTH_BITS, 32);
在我的窗口创建之前解决了问题。