Home | History | Annotate | Download | only in functional

Lines Matching refs:valueMax

333 			const deInt32	red		= deInt32(info.valueMin.x() + (info.valueMax.x() - info.valueMin.x()) * redScale);
334 const deInt32 green = deInt32(info.valueMin.y() + (info.valueMax.y() - info.valueMin.y()) * greenScale);
335 const deInt32 blue = deInt32(info.valueMin.z() + (info.valueMax.z() - info.valueMin.z()) * blueScale);
336 const deInt32 alpha = deInt32(info.valueMin.w() + (info.valueMax.w() - info.valueMin.w()) * alphaScale);
346 const deUint32 red = deUint32(info.valueMax.x() * redScale);
347 const deUint32 green = deUint32(info.valueMax.y() * greenScale);
348 const deUint32 blue = deUint32(info.valueMax.z() * blueScale);
349 const deUint32 alpha = deUint32(info.valueMax.w() * alphaScale);
359 const float red = info.valueMin.x() + (info.valueMax.x() - info.valueMin.x()) * redScale;
360 const float green = info.valueMin.y() + (info.valueMax.y() - info.valueMin.y()) * greenScale;
361 const float blue = info.valueMin.z() + (info.valueMax.z() - info.valueMin.z()) * blueScale;
362 const float alpha = info.valueMin.w() + (info.valueMax.w() - info.valueMin.w()) * alphaScale;
372 const float red = info.valueMax.x() * redScale;
373 const float green = info.valueMax.y() * greenScale;
374 const float blue = info.valueMax.z() * blueScale;
375 const float alpha = info.valueMax.w() * alphaScale;