Opengl: Apply line width provided by renderer. [Couriersud]

This commit is contained in:
couriersud 2019-11-24 17:11:50 +01:00 committed by Vas Crabb
parent a281c422ff
commit a3688f06f2

View File

@ -1234,6 +1234,7 @@ int renderer_ogl::draw(const int update)
if(pendingPrimitive!=curPrimitive)
{
glLineWidth(prim.width);
glBegin(curPrimitive);
pendingPrimitive=curPrimitive;
}