llvmpipe: Fix lp_build_polynomial comment.

This commit is contained in:
José Fonseca 2009-12-15 14:15:52 +00:00
parent 72c9878069
commit 85c27c3ef7

View file

@ -1095,7 +1095,7 @@ lp_build_log(struct lp_build_context *bld,
/**
* Generate polynomial.
* Ex: x^2 * coeffs[0] + x * coeffs[1] + coeffs[2].
* Ex: coeffs[0] + x * coeffs[1] + x^2 * coeffs[2].
*/
static LLVMValueRef
lp_build_polynomial(struct lp_build_context *bld,