我在使用FTGL庫在OpenGL中繪製文本,一切正常,但是我想爲文本添加陰影。我試過是繪製相同的文本用黑色的顏色,然後繪製文本之上,與正常顏色是這樣的(僞):在OpenGL + FTGL中繪製帶陰影的文字
glColor3f(0, 0, 0); // outline color
DrawText(x-1, y-1, str);
DrawText(x+1, y-1, str);
DrawText(x+1, y+1, str);
DrawText(x-1, y+1, str);
glColor3f(1, 1, 1); // primary color
DrawText(x,y,str);
但我要繪製文本的5倍,它仍然不是很好看。
我想獲得類似的截圖