changeset 29382:363310571aae

Cosmetics: make some variables constant to signify their intended use and, therefore, improve code readability.
author eugeni
date Sat, 18 Jul 2009 11:33:00 +0000
parents fd2047f3adf6
children e9cab9f6ed62
files libass/ass_render.c
diffstat 1 files changed, 5 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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;