Skip to content

Commit

Permalink
Increase video texture size to 1024x1024.
Browse files Browse the repository at this point in the history
  • Loading branch information
cybersphinx committed May 2, 2011
1 parent 58f7a8e commit 1f46905
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/sequence/sequence.c
Expand Up @@ -291,8 +291,8 @@ static void Allocate_videoFrame(void)
RGBAframe = malloc(videodata.ti.frame_width * videodata.ti.frame_height * 4);
}

static int texture_width = 512;
static int texture_height = 512;
static int texture_width = 1024;
static int texture_height = 1024;
static GLuint video_texture;

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

0 comments on commit 1f46905

Please sign in to comment.