summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian <brian@yutani.localnet.net>2007-04-19 15:30:11 -0600
committerBrian <brian@yutani.localnet.net>2007-04-21 10:05:05 -0600
commit98ef18909a97dea9a28f0fe30797c0353a1117ce (patch)
tree9b0a7472f06f7b9211b52f519281df8d76d45048
parentf2346498aacdfc3e574fed43e0fe13ad3f8e2a2d (diff)
new varnames in slang_operation_insert()
-rw-r--r--src/mesa/shader/slang/slang_compile_operation.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/mesa/shader/slang/slang_compile_operation.c b/src/mesa/shader/slang/slang_compile_operation.c
index 5d80bc77c6..dfba1965ce 100644
--- a/src/mesa/shader/slang/slang_compile_operation.c
+++ b/src/mesa/shader/slang/slang_compile_operation.c
@@ -175,40 +175,40 @@ slang_operation_grow(GLuint *numChildren, slang_operation **children)
/**
* Insert a new slang_operation into an array.
- * \param numChildren pointer to current number of children (in/out)
- * \param children address of array (in/out)
- * \param pos position to insert
- * \return pointer to the new operation
+ * \param numElements pointer to current array size (in/out)
+ * \param array address of the array (in/out)
+ * \param pos position to insert new element
+ * \return pointer to the new operation/element
*/
slang_operation *
-slang_operation_insert(GLuint *numChildren, slang_operation **children,
+slang_operation_insert(GLuint *numElements, slang_operation **array,
GLuint pos)
{
slang_operation *ops;
- assert(pos <= *numChildren);
+ assert(pos <= *numElements);
ops = (slang_operation *)
- _mesa_malloc((*numChildren + 1) * sizeof(slang_operation));
+ _mesa_malloc((*numElements + 1) * sizeof(slang_operation));
if (ops) {
slang_operation *newOp;
newOp = ops + pos;
if (pos > 0)
- _mesa_memcpy(ops, *children, pos * sizeof(slang_operation));
- if (pos < *numChildren)
- _mesa_memcpy(newOp + 1, (*children) + pos,
- (*numChildren - pos) * sizeof(slang_operation));
+ _mesa_memcpy(ops, *array, pos * sizeof(slang_operation));
+ if (pos < *numElements)
+ _mesa_memcpy(newOp + 1, (*array) + pos,
+ (*numElements - pos) * sizeof(slang_operation));
if (!slang_operation_construct(newOp)) {
_mesa_free(ops);
- *numChildren = 0;
- *children = NULL;
+ *numElements = 0;
+ *array = NULL;
return NULL;
}
- if (*children)
- _mesa_free(*children);
- *children = ops;
- (*numChildren)++;
+ if (*array)
+ _mesa_free(*array);
+ *array = ops;
+ (*numElements)++;
return newOp;
}
return NULL;