Lines Matching refs:param

32  * @param di        The weight grid decimation to use.
33 * @param weights The decimated weight values to use.
34 * @param index The first texel index to interpolate.
72 * @param di The weight grid decimation to use.
73 * @param weights The decimated weight values to use.
74 * @param index The first texel index to interpolate.
102 * @param blk The image block color data to compress.
103 * @param pi The partition info for the current trial.
104 * @param[out] ei The computed ideal endpoints and weights.
105 * @param component The color component to compute.
211 * @param blk The image block color data to compress.
212 * @param pi The partition info for the current trial.
213 * @param[out] ei The computed ideal endpoints and weights.
214 * @param component1 The first color component to compute.
215 * @param component2 The second color component to compute.
286 float param = dot_s(point - line.a, line.b);
287 ei.weights[tix] = param;
289 lowparam = astc::min(param, lowparam);
290 highparam = astc::max(param, highparam);
349 * @param blk The image block color data to compress.
350 * @param pi The partition info for the current trial.
351 * @param[out] ei The computed ideal endpoints and weights.
352 * @param omitted_component The color component excluded from the calculation.
480 float param = dot3_s(point - line.a, line.b);
481 ei.weights[tix] = param;
483 lowparam = astc::min(param, lowparam);
484 highparam = astc::max(param, highparam);
561 * @param blk The image block color data to compress.
562 * @param pi The partition info for the current trial.
563 * @param[out] ei The computed ideal endpoints and weights.
602 float param = dot_s(point - line.a, line.b);
603 ei.weights[tix] = param;
605 lowparam = astc::min(param, lowparam);
606 highparam = astc::max(param, highparam);
1152 * @param rgba_weight_sum Sum of partition component error weights.
1153 * @param weight_weight_sum Sum of partition component error weights * texel weight.
1154 * @param rgbq_sum Sum of partition component error weights * texel weight * color data.
1155 * @param psum Sum of RGB color weights * texel weight^2.