Skip to content

Commit 1f46905

Browse files
committed
Increase video texture size to 1024x1024.
1 parent 58f7a8e commit 1f46905

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/sequence/sequence.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ static void Allocate_videoFrame(void)
291291
RGBAframe = malloc(videodata.ti.frame_width * videodata.ti.frame_height * 4);
292292
}
293293

294-
static int texture_width = 512;
295-
static int texture_height = 512;
294+
static int texture_width = 1024;
295+
static int texture_height = 1024;
296296
static GLuint video_texture;
297297

298298
#define Vclip( x ) ( (x > 0) ? ((x < 255) ? x : 255) : 0 )

0 commit comments

Comments
 (0)