在过去的几个月里,我一直在SDL的夜晚和周末开展一个项目。我正在尝试让菜单系统正常工作。目前,我正在使用SDL_TTF
绘制文字。至于我的问题,当我尝试将一些纹理绘制到另一个纹理时,我会看到一些奇怪的行为。
奇怪的是,当我绘制它时,在使用SDL_TEXTUREACCESS_TARGET
创建的目标纹理上(就像它在文档中所做的那样)什么都不绘制,但不会返回任何错误。但是,如果我使用SDL_TEXTUREACCESS_STATIC
或SDL_TEXTUREACCESS_STREAM
,则由于访问属性而设置渲染目标时会返回错误,但绘制得很好。在做了一些挖掘之后,我听到了一些关于英特尔驱动程序中的错误的事情(我在使用英特尔显卡的Macbook上),所以我想知道这是不是我搞砸了,以及我如何解决它。或者,如果这不是我的错,我仍然想知道发生了什么,以及它是否会在不同平台上表现不同以及我如何解决它。
这是我的代码,删除不必要的部分后:
我创建了渲染器:
renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_TARGETTEXTURE);
稍后,当我去画布上渲染时:
TTF_Font *fnt = loadFont(fontName.c_str(), fontSize);
在这里,我解析了一些属性并使用TTF_SetFontStyle()和clr设置文本颜色。
SDL_Texture *canvas;
canvas = SDL_CreateTexture(rendy, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, contentRect.w, contentRect.h)
SDL_SetRenderTarget(rendy, canvas);
int pos = 0;
for (list<string>::iterator itr = lines.begin(); itr != lines.end(); itr++){
SDL_Surface *temp;
temp = TTF_RenderText_Blended(fnt, src.c_str(), clr);
SDL_Texture *line;
line = SDL_CreateTextureFromSurface(rendy, temp);
int w,h;
SDL_QueryTexture(line, NULL, NULL, &w, &h);
SDL_Rect destR;
//Assume that we're left justified
destR.x = 0;
destR.y = pos;
destR.w = w;
destR.h = h;
SDL_RenderCopy(rendy, line, NULL, &destR);
SDL_DestroyTexture(line);
SDL_FreeSurface(temp);
pos += TTF_FontLineSkip(fnt);
}
//Clean up
SDL_SetRenderTarget(rendy, NULL);
canvas返回到调用函数,因此可以缓存它直到修改此文本框。该功能的工作原理是为整个盒子提供纹理,在其上绘制背景纹理,然后在其上绘制此图像,并保持整个事物。
该代码如下所示:
(绘制背景的东西,渲染得很好)
SDL_Texture *sum = SDL_CreateTexture(rendy, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, globalRect.w, globalRect.h);
SDL_SetTextureBlendMode(sum, SDL_BLENDMODE_BLEND);
SDL_SetRenderTarget(rendy, sum);
string lPad = getAttribute(EL_LEFT_PADDING);
string tPad = getAttribute(EL_TOP_PADDING);
int paddingL = strtol(lPad.c_str(), NULL, 10);
int paddingT = strtol(tPad.c_str(), NULL, 10);
SDL_Rect destR;
SDL_Rect srcR;
srcR.x = 0;
srcR.y = 0;
srcR.w = globalRect.w; //globalRect is the size size of the whole button
srcR.h = globalRect.h;
destR.x = 0;
destR.y = 0;
destR.w = globalRect.w;
destR.h = globalRect.h;
SDL_RenderCopy(rendy, bgTexture, NULL, &destR);
int maxX = contentRect.w;
fgTexture = getFGImage(rendy); //The call to the previous part
int w, h;
SDL_QueryTexture(fgTexture, NULL, NULL, &w, &h);
int width, height;
getTextSize(&width, &height, maxX);
srcR.x = 0;
srcR.y = 0;
srcR.w = width;
srcR.h = height;
destR.x = paddingL;
destR.y = paddingT;
destR.w = globalRect.w;
destR.h = globalRect.h;
SDL_RenderCopy(rendy, fgTexture, NULL, &destR);
SDL_DestroyTexture(fgTexture);
SDL_DestroyTexture(bgTexture);
return sum;
Sum返回到另一个绘制图形的函数。
提前致谢!
更新 所以我发现它只是在我有不正确的访问设置时才绘制的原因是,由于函数返回了一个错误值,渲染目标从未设置为纹理,因此它只是在屏幕上绘制。我还通过编写一个函数AuditTexture来检查所有纹理,该函数检查渲染器是否支持纹理的纹理格式,打印访问属性的字符串描述,并打印尺寸。我现在知道它们的所有纹理格式都是支持的,两条线是静态的,canvas和sum是渲染目标,它们都没有零维度。
答案 0 :(得分:1)
事实证明,我已经将渲染目标设置为复合纹理,然后调用我的函数,在绘制文本之前将渲染目标设置为文本纹理。然后当我从函数返回时,渲染目标仍然是文本纹理而不是复合纹理,所以我基本上将文本绘制在自身上而不是在背景上绘制。
明智的一句话:不要假设有什么东西会照顾你,特别是在c或c ++中。