Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-06-14 15:05:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-14 15:05:15 +0400
commita57c8a37a10168fc4335c167c71939474be81e8c (patch)
tree385ae502adc731965d378fb925c65c2f29a59d4b /intern/raskter
parent17d5ac0abf00a46d39b84ae17806042011bd11d6 (diff)
comment unused vars
Diffstat (limited to 'intern/raskter')
-rw-r--r--intern/raskter/raskter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/raskter/raskter.c b/intern/raskter/raskter.c
index 0574d985d0c..910cd4c6a3d 100644
--- a/intern/raskter/raskter.c
+++ b/intern/raskter/raskter.c
@@ -810,9 +810,9 @@ int PLX_antialias_buffer(float *buf, int buf_x, int buf_y) {
buf[i] *= 0.5f;
}
#endif
- buf_x = buf_x;
- buf_y = buf_y;
- buf[0] = buf[0];
+ (void)buf_x;
+ (void)buf_y;
+ (void)buf;
return 1;
#else
/*XXX - TODO: THIS IS NOT FINAL CODE - IT DOES NOT WORK - DO NOT ENABLE IT */