Browse Source

gal: Pass aReserve to drawLineQuad in drawPolyline.

7.0
dsa-t 3 years ago
parent
commit
aeef215ffb
  1. 2
      common/gal/opengl/opengl_gal.cpp

2
common/gal/opengl/opengl_gal.cpp

@ -2187,7 +2187,7 @@ void OPENGL_GAL::drawPolyline( const std::function<VECTOR2D( int )>& aPointGette
if( aPointCount == 1 )
{
drawLineQuad( aPointGetter( 0 ), aPointGetter( 0 ), false );
drawLineQuad( aPointGetter( 0 ), aPointGetter( 0 ), aReserve );
return;
}

Loading…
Cancel
Save