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-08 09:53:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-08 09:53:30 +0400
commit26ca0008ee8081dfcd2e894613dc87c5b5f52c72 (patch)
tree17054fdac402cf7a4b507f65adf366e6c60ac054 /intern/raskter
parenta6f3e15d6ec95e9649c08f50b41385ea293275e2 (diff)
typo/style edits
Diffstat (limited to 'intern/raskter')
-rw-r--r--intern/raskter/raskter.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/intern/raskter/raskter.c b/intern/raskter/raskter.c
index 9bf1779a608..081a7c6bdbd 100644
--- a/intern/raskter/raskter.c
+++ b/intern/raskter/raskter.c
@@ -189,7 +189,8 @@ static int rast_scan_fill(struct r_fill_context *ctx, struct poly_vert *verts, i
* If the number of verts specified to render as a polygon is less than 3,
* return immediately. Obviously we cant render a poly with sides < 3. The
* return for this we set to 1, simply so it can be distinguished from the
- * next place we could return, /home/guest/blender-svn/soc-2011-tomato/intern/raskter/raskter.cwhich is a failure to allocate memory.
+ * next place we could return, /home/guest/blender-svn/soc-2011-tomato/intern/raskter/raskter.
+ * which is a failure to allocate memory.
*/
if (num_verts < 3) {
return(1);
@@ -384,8 +385,8 @@ static int rast_scan_fill(struct r_fill_context *ctx, struct poly_vert *verts, i
int PLX_raskterize(float (*base_verts)[2], int num_base_verts,
float *buf, int buf_x, int buf_y)
{
- int i; /* i: Loop counter. */
- struct poly_vert *ply; /* ply: Pointer to a list of integer buffer-space vertex coordinates. */
+ int i; /* i: Loop counter. */
+ struct poly_vert *ply; /* ply: Pointer to a list of integer buffer-space vertex coordinates. */
struct r_fill_context ctx = {0};
/*