HomeSort by relevance Sort by last modified time
    Searched refs:offsetRange (Results 1 - 2 of 2) sorted by null

  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
MidpointDisplacementHeightMap.java 131 float offsetRange = range;
136 nextCoords = doSquareStep(tempBuffer, nextCoords, stepSize, offsetRange, random);
140 nextCoords = doDiamondStep(tempBuffer, nextCoords, stepSize, offsetRange, random);
143 offsetRange *= persistence;
165 * @param offsetRange the offset range within a random value is picked and added to the average
169 protected int[] doSquareStep(float[][] tempBuffer, int[] coords, int stepSize, float offsetRange, Random random) {
178 float offset = getOffset(random, offsetRange, coords, cornerAverage);
197 * @param offsetRange
201 protected int[] doDiamondStep(float[][] tempBuffer, int[] coords, int stepSize, float offsetRange, Random random) {
222 float offset = getOffset(random, offsetRange, coords, cornerAverage);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureGatherTests.cpp 465 DynamicSinglePixelOffsets (const IVec2& offsetRange) : m_offsetRange(offsetRange) {}
814 static MovePtr<PixelOffsets> makePixelOffsetsFunctor (GatherType gatherType, const GatherArgs& gatherArgs, const IVec2& offsetRange)
823 return MovePtr<PixelOffsets>(new DynamicSinglePixelOffsets(offsetRange));
1004 static string genGatherFuncCall (GatherType, const tcu::TextureFormat&, const GatherArgs&, const string& refZExpr, const IVec2& offsetRange, int indentationDepth);
1005 static glu::ProgramSources genProgramSources (GatherType, TextureType, const tcu::TextureFormat&, const GatherArgs&, const string& refZExpr, const IVec2& offsetRange);
    [all...]

Completed in 46 milliseconds