comment unused vars

This commit is contained in:
Campbell Barton
2012-06-14 11:05:15 +00:00
parent 17d5ac0abf
commit a57c8a37a1
4 changed files with 7 additions and 7 deletions

View File

@@ -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 */