Lines Matching refs:getVariableManager
266 …if (state.getVariableManager().getNumAllocatedScalars() + type.getScalarSize() > state.getShaderPa… in canAllocateVariable()
822 … = state.getShaderParameters().maxCombinedVariableScalars - state.getVariableManager().getNumAllo… in AssignOp()
823 …bool useRandomRange = !state.getVariableManager().hasEntry<IsWritableEntry>() || ((maxScalars > 0)… in AssignOp()
835 …ndom().choose<const ValueEntry*>(state.getVariableManager().getBegin<IsWritableEntry>(), state.get… in AssignOp()
840 DE_ASSERT(state.getVariableManager().hasEntry(IsWritableIntersectingEntry(m_valueRange))); in AssignOp()
844 …IsWritableIntersectingEntry::Iterator first = state.getVariableManager().getBegin(IsWritableInters… in AssignOp()
845 …IsWritableIntersectingEntry::Iterator end = state.getVariableManager().getEnd(IsWritableIntersecti… in AssignOp()
888 !state.getVariableManager().hasEntry(IsWritableIntersectingEntry(valueRange))) in getWeight()
895 !state.getVariableManager().hasEntry<IsWritableEntry>() && in getWeight()
896 …state.getVariableManager().getNumAllocatedScalars() >= state.getShaderParameters().maxCombinedVari… in getWeight()
960 Variable* variable = state.getVariableManager().allocate(valueRange.getType()); in allocateNewVariable()
963 state.getVariableManager().setValue(variable, valueRange); in allocateNewVariable()
978 …bool uniformOk = state.getVariableManager().getNumAllocatedUniformScalars() + numScalars <= state.… in allocateNewVariable()
980 …(state.getVariableManager().getNumAllocatedShaderInVariables() + NUM_RESERVED_SHADER_INPUTS < stat… in allocateNewVariable()
987 …state.getVariableManager().setStorage(variable, state.getRandom().chooseWeighted<Variable::Storage… in allocateNewVariable()
1086 … = state.getShaderParameters().maxCombinedVariableScalars - state.getVariableManager().getNumAllo… in VariableRead()
1087 …bool useRandomRange = !state.getVariableManager().hasEntry(filter) || ((maxScalars > 0) && getWe… in VariableRead()
1101 ….getRandom().choose<const ValueEntry*>(state.getVariableManager().getBegin(filter), state.getVaria… in VariableRead()
1107 …IsReadableIntersectingEntry::Iterator first = state.getVariableManager().getBegin(IsReadableInters… in VariableRead()
1108 …IsReadableIntersectingEntry::Iterator end = state.getVariableManager().getEnd(IsReadableIntersect… in VariableRead()
1137 state.getVariableManager().setValue(m_variable, intersection); in VariableRead()
1151 if (state.getVariableManager().hasEntry(IsReadableEntry(state.getExpressionFlags())) || in getWeight()
1152 …state.getVariableManager().getNumAllocatedScalars() < state.getShaderParameters().maxCombinedVaria… in getWeight()
1159 …!state.getVariableManager().hasEntry(IsReadableIntersectingEntry(valueRange, state.getExpressionFl… in getWeight()
1170 …IsWritableSupersetEntry::Iterator first = state.getVariableManager().getBegin(IsWritableSupersetEn… in VariableWrite()
1171 …IsWritableSupersetEntry::Iterator end = state.getVariableManager().getEnd(IsWritableSupersetEntry… in VariableWrite()
1178 m_variable = state.getVariableManager().allocate(valueRange.getType()); in VariableWrite()
1192 const ValueEntry* parentEntry = state.getVariableManager().getParentValue(m_variable); in VariableWrite()
1196 state.getVariableManager().setValue(m_variable, parentEntry->getValueRange()); in VariableWrite()
1204 state.getVariableManager().setValue(m_variable, infRange); in VariableWrite()
1211 !state.getVariableManager().hasEntry(IsWritableSupersetEntry(valueRange))) in getWeight()
1454 int sampler2DCount = countSamplers(state.getVariableManager(), VariableType::TYPE_SAMPLER_2D); in TexLookup()
1455 int samplerCubeCount = countSamplers(state.getVariableManager(), VariableType::TYPE_SAMPLER_CUBE); in TexLookup()
1462 Variable* sampler = state.getVariableManager().allocate(VariableType(samplerType, 1)); in TexLookup()
1463 …state.getVariableManager().setStorage(sampler, Variable::STORAGE_UNIFORM); // Samplers are always … in TexLookup()
1467 …m_sampler = state.getRandom().choose<const ValueEntry*>(state.getVariableManager().getBegin(IsSamp… in TexLookup()
1468 state.getVariableManager().getEnd(IsSamplerEntry(samplerType)))->getVariable(); in TexLookup()