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:
authorPeter Larabell <xgl.asyliax@gmail.com>2012-06-14 01:37:39 +0400
committerPeter Larabell <xgl.asyliax@gmail.com>2012-06-14 01:37:39 +0400
commit94a03557954ee2c8a4b5c45f8a4577640b099e73 (patch)
treefc7ab8853f7cf9f55c567317e3063433e821778d /intern/raskter
parentceffc2cd50ea1e35757c8834b83b1d55f93d88c6 (diff)
simple assignments added to pre-processor temporary section of function to avoid unused argument compiler warnings.
Diffstat (limited to 'intern/raskter')
-rw-r--r--intern/raskter/raskter.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/raskter/raskter.c b/intern/raskter/raskter.c
index 8bdd4dccbc0..0574d985d0c 100644
--- a/intern/raskter/raskter.c
+++ b/intern/raskter/raskter.c
@@ -810,6 +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];
return 1;
#else
/*XXX - TODO: THIS IS NOT FINAL CODE - IT DOES NOT WORK - DO NOT ENABLE IT */