Cut down on the number of verticies drawn for fades
This commit is contained in:
parent
af0e75c23c
commit
8e02b99192
|
@ -520,7 +520,7 @@ Region::draw ( int X, int Y, int W, int H )
|
||||||
|
|
||||||
const int width = timeline->ts_to_x( fade.length );
|
const int width = timeline->ts_to_x( fade.length );
|
||||||
|
|
||||||
for ( int i = X; i < line_x() + width; i++ )
|
for ( int i = X; i < line_x() + width; i += 3 )
|
||||||
{
|
{
|
||||||
const int x = i;
|
const int x = i;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue