OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxScalars
(Results
1 - 3
of
3
) sorted by null
/external/deqp/framework/randomshaders/
rsgUtils.hpp
48
VariableType computeRandomType (GeneratorState& state, int
maxScalars
);
rsgUtils.cpp
153
VariableType computeRandomType (GeneratorState& state, int
maxScalars
)
155
DE_ASSERT(
maxScalars
>= 1);
176
return VariableType(baseType, state.getRandom().getInt(minVecLength, de::min(
maxScalars
, maxVecLength)));
rsgExpression.cpp
680
const int
maxScalars
= 4; // We don't have to be able to assign this value to anywhere
681
m_valueRange = ValueRange(computeRandomType(state,
maxScalars
));
823
int
maxScalars
= state.getShaderParameters().maxCombinedVariableScalars - state.getVariableManager().getNumAllocatedScalars();
824
bool useRandomRange = !state.getVariableManager().hasEntry<IsWritableEntry>() || ((
maxScalars
> 0) && getWeightedBool(state.getRandom(), 0.1f));
828
DE_ASSERT(
maxScalars
> 0);
829
m_valueRange = ValueRange(computeRandomType(state,
maxScalars
));
[
all
...]
Completed in 68 milliseconds