Lines Matching refs:getFloat
174 const float cx = rnd.getFloat(-1.0f, 1.0f); in randomizeDrawOp()
175 const float cy = rnd.getFloat(-1.0f, 1.0f); in randomizeDrawOp()
176 const float flatAlpha = (rnd.getFloat(minAlpha, maxAlpha) > 0.5f) ? 1.0f : 0.0f; in randomizeDrawOp()
183 position.x() = cx + rnd.getFloat(-maxTriOffset, maxTriOffset); in randomizeDrawOp()
184 position.y() = cy + rnd.getFloat(-maxTriOffset, maxTriOffset); in randomizeDrawOp()
185 position.z() = rnd.getFloat(minDepth, maxDepth); in randomizeDrawOp()
188 color.x() = rnd.getFloat(minRGB, maxRGB); in randomizeDrawOp()
189 color.y() = rnd.getFloat(minRGB, maxRGB); in randomizeDrawOp()
190 color.z() = rnd.getFloat(minRGB, maxRGB); in randomizeDrawOp()
191 color.w() = rnd.getFloat(minAlpha, maxAlpha); in randomizeDrawOp()
209 p1.x() = cx + rnd.getFloat(-maxTriOffset, maxTriOffset); in randomizeDrawOp()
210 p1.y() = cy + rnd.getFloat(-maxTriOffset, maxTriOffset); in randomizeDrawOp()
211 p1.z() = rnd.getFloat(minDepth, maxDepth); in randomizeDrawOp()
214 p2.x() = cx + rnd.getFloat(-maxTriOffset, maxTriOffset); in randomizeDrawOp()
215 p2.y() = cy + rnd.getFloat(-maxTriOffset, maxTriOffset); in randomizeDrawOp()
216 p2.z() = rnd.getFloat(minDepth, maxDepth); in randomizeDrawOp()