# HG changeset patch # User eugeni # Date 1247916780 0 # Node ID 363310571aae88750003a51d841c1510dc871a5b # Parent fd2047f3adf67bc7c2fb6bfdb1d96c0f4b40f4e8 Cosmetics: make some variables constant to signify their intended use and, therefore, improve code readability. diff -r fd2047f3adf6 -r 363310571aae libass/ass_render.c --- a/libass/ass_render.c Sat Jul 18 11:32:58 2009 +0000 +++ b/libass/ass_render.c Sat Jul 18 11:33:00 2009 +0000 @@ -346,19 +346,18 @@ // color = color left of brk // color2 = color right of brk int b_x0, b_y0, b_x1, b_y1; // visible part of the bitmap - int clip_x0, clip_y0, clip_x1, clip_y1; int tmp; ass_image_t* img; + const int clip_x0 = render_context.clip_x0; + const int clip_y0 = render_context.clip_y0; + const int clip_x1 = render_context.clip_x1; + const int clip_y1 = render_context.clip_y1; + dst_x += bm->left; dst_y += bm->top; brk -= bm->left; - // clipping - clip_x0 = render_context.clip_x0; - clip_y0 = render_context.clip_y0; - clip_x1 = render_context.clip_x1; - clip_y1 = render_context.clip_y1; b_x0 = 0; b_y0 = 0; b_x1 = bm->w;