OS Ubuntu; IDE代码块 我用' load'编写了自己的纹理管理器类。功能
bool TextureManager::load(std::string fileName, std::string id, SDL_Renderer* pRenderer)
{
SDL_Surface* pTempSurface = IMG_Load(fileName.c_str());
if(pTempSurface == NULL) {
printf("IMAGE LOAD ERROR: %s \n", IMG_GetError());
return false;
}
SDL_Texture* pTexture = SDL_CreateTextureFromSurface(pRenderer, pTempSurface);
SDL_FreeSurface(pTempSurface);
// everything went ok, add the texture to our list
if(pTexture != 0) {
m_textureMap[id] = pTexture;
return true;
}
// reaching here means something went wrong
return false;
}
它写了" IMAGE LOAD ERROR:不支持的图像格式"
但我包括所有SDL_image要求:
#include <png.h>
#include <zlib.h>
没有这个纹理加载器IMG_load()正常工作。 那是什么?我该如何修理呢?
答案 0 :(得分:0)
您不需要包含这些标头,只需要SDL_image
你初始化了吗? e.g。
/*! initialize PNG support */
IMG_Init(IMG_INIT_PNG);