gpt4 book ai didi

c++ - SDL_ttf 奇怪的崩溃问题 SDL_OpenGL

转载 作者:行者123 更新时间:2023-11-30 04:26:43 26 4
gpt4 key购买 nike

在我的游戏中,当“时间”处于事件状态时,它总是会在 5 个“小时”后崩溃。当它运行时,它工作正常,直到它开始显示不正确的时间(原因不明)并且它会在 5 个“小时”后由于段错误而崩溃。这很奇怪,因为以前没有这样的东西,它应该一遍又一遍地做同样的事情。这是我的代码。试着告诉我是否有可能随着时间的推移发生内存泄漏的地方。顺便说一句,“time_tick()”发生在每个“while”循环中。

struct global_struct
{
int seconds;
int minutes;
int hours;
TTF_Font * font;
SDL_Color font_color;
SDL_Color bk_color;
};
global_struct global;

void GL_RENDER_TTF(const char * Text, TTF_Font * Font, SDL_Color Textcolor, SDL_Color bk_color, int x, int y, float depth)
{
SDL_Surface * surface;
int w;
int h;

if(!(Font == NULL))
{
surface = TTF_RenderUTF8_Shaded(Font,Text,Textcolor,bk_color);
if(!(surface == NULL))
{
w = surface->w;
h = surface->h;
GLuint texture;
GLenum texture_format;
GLint nOfColors;
surface = SDL_DisplayFormatAlpha(surface);

nOfColors = surface->format->BytesPerPixel;
if (nOfColors == 4)
{
if (surface->format->Rmask == 0x000000ff)
texture_format = GL_RGBA;
else
texture_format = GL_BGRA;
}
else if (nOfColors == 3)
{
if (surface->format->Rmask == 0x000000ff)
texture_format = GL_RGB;
else
texture_format = GL_BGR;
}

glGenTextures( 1, &texture );

glBindTexture( GL_TEXTURE_2D, texture );

glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);

glTexImage2D( GL_TEXTURE_2D, 0, nOfColors, surface->w, surface->h, 0, texture_format, GL_UNSIGNED_BYTE, surface->pixels );

glBindTexture(GL_TEXTURE_2D, texture);

glBegin(GL_QUADS);

glTexCoord2f(0.0f,0.0f); glVertex3f(x,y,depth);
glTexCoord2f(1.0f,0.0f); glVertex3f(x+w,y,depth);
glTexCoord2f(1.0f,1.0f); glVertex3f(x+w,y+h,depth);
glTexCoord2f(0.0f,1.0f); glVertex3f(x,y+h,depth);

glEnd();
};
};
};

void time_tick(float depth1)
{
global.seconds = global.seconds + 1;
if(global.seconds > 59)
{
global.seconds = 0;
global.minutes = global.minutes + 1;
};
if(global.minutes > 59)
{
global.minutes = 0;
global.hours = global.hours + 1;
};
if(global.hours > 23)
{
global.hours = 0;
};
string time;
string shours;
string sminutes;
string sseconds;
stringstream ssseconds;
stringstream ssminutes;
stringstream sshours;
ssseconds << global.seconds;
ssminutes << global.minutes;
sshours << global.hours;
if(global.hours < 10)
{
shours = "0"+sshours.str();
}
else
{
shours = sshours.str();
};
if(global.minutes < 10)
{
sminutes = "0"+ssminutes.str();
}
else
{
sminutes = ssminutes.str();
};
if(global.seconds < 10)
{
sseconds = "0"+ssseconds.str();
}
else
{
sseconds = ssseconds.str();
};
time = "time: "+shours+"h "+sminutes+"m "+sseconds+"s";
GL_RENDER_TTF(time.c_str(),global.font,global.font_color,global.bk_color,0,0,depth1);
SDL_Delay(10);
};

最佳答案

每次调用 RENDER_TTF 时,您都在创建一个新纹理,而前一个纹理仍然存在。如果可以使用恒定的纹理大小,请使用 glTexSubImage2D 替换纹理内容。否则,在创建新纹理之前,使用 glDeleteTextures 释放唯一的纹理。

您也可以通过重新调用 glTexImage2D 并绑定(bind)旧的纹理对象来重用纹理 ID(即没有 glGenTextures,但最近版本的 OpenGL 不鼓励这样做并且 glTexStorage 完全不允许它)。

关于c++ - SDL_ttf 奇怪的崩溃问题 SDL_OpenGL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11379468/

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