class Renderer{
public:
void text_to_sdl_surface(Text text, Colour colour);
Font get_font(std::string font_name, int font_size);
private:
SDL_Surface * text_surface;
};
void Renderer::text_to_sdl_surface(Text text, Colour colour) {
glColor4f(1,1,1,1);
SDL_Color text_colour;
text_colour.r = Uint8(colour.get_colour_as_int()[0]);
text_colour.g = Uint8(colour.get_colour_as_int()[1]);
text_colour.b = Uint8(colour.get_colour_as_int()[2]);
TTF_Font * temp_font = get_font(text.get_fontname(), text.get_fontsize()).get_font();
text_surface = TTF_RenderText_Blended(temp_font, text.get_string().c_str(), text_colour);
}
我正在使用SDL_TTF来绘制文本并且有一个内存泄漏,我已经缩小到上面的函数,特别是这一行:
text_surface = TTF_RenderText_Blended(temp_font, text.get_string().c_str(), text_colour);
在opengl中使用曲面后,我在再次运行上面的函数之前调用SDL_FreeSurface
,但它仍在泄漏。