Lines Matching refs:getVariableManager

266 …if (state.getVariableManager().getNumAllocatedScalars() + type.getScalarSize() > state.getShaderPa…  in canAllocateVariable()
848 … = state.getShaderParameters().maxCombinedVariableScalars - state.getVariableManager().getNumAllo… in AssignOp()
849 …bool useRandomRange = !state.getVariableManager().hasEntry<IsWritableEntry>() || ((maxScalars > 0)… in AssignOp()
861 …ndom().choose<const ValueEntry*>(state.getVariableManager().getBegin<IsWritableEntry>(), state.get… in AssignOp()
866 …DE_ASSERT(state.getVariableManager().hasEntry(IsWritableIntersectingEntry(m_valueRange.asAccess())… in AssignOp()
870 …IsWritableIntersectingEntry::Iterator first = state.getVariableManager().getBegin(IsWritableInters… in AssignOp()
871 …IsWritableIntersectingEntry::Iterator end = state.getVariableManager().getEnd(IsWritableIntersecti… in AssignOp()
914 !state.getVariableManager().hasEntry(IsWritableIntersectingEntry(valueRange))) in getWeight()
921 !state.getVariableManager().hasEntry<IsWritableEntry>() && in getWeight()
922 …state.getVariableManager().getNumAllocatedScalars() >= state.getShaderParameters().maxCombinedVari… in getWeight()
986 Variable* variable = state.getVariableManager().allocate(valueRange.getType()); in allocateNewVariable()
989 state.getVariableManager().setValue(variable, valueRange); in allocateNewVariable()
1004 …bool uniformOk = state.getVariableManager().getNumAllocatedUniformScalars() + numScalars <= state.… in allocateNewVariable()
1006 …(state.getVariableManager().getNumAllocatedShaderInVariables() + NUM_RESERVED_SHADER_INPUTS < stat… in allocateNewVariable()
1013 …state.getVariableManager().setStorage(variable, state.getRandom().chooseWeighted<Variable::Storage… in allocateNewVariable()
1112 … = state.getShaderParameters().maxCombinedVariableScalars - state.getVariableManager().getNumAllo… in VariableRead()
1113 …bool useRandomRange = !state.getVariableManager().hasEntry(filter) || ((maxScalars > 0) && getWe… in VariableRead()
1127 ….getRandom().choose<const ValueEntry*>(state.getVariableManager().getBegin(filter), state.getVaria… in VariableRead()
1133 …IsReadableIntersectingEntry::Iterator first = state.getVariableManager().getBegin(IsReadableInters… in VariableRead()
1134 …IsReadableIntersectingEntry::Iterator end = state.getVariableManager().getEnd(IsReadableIntersect… in VariableRead()
1163 state.getVariableManager().setValue(m_variable, intersection.asAccess()); in VariableRead()
1177 if (state.getVariableManager().hasEntry(IsReadableEntry(state.getExpressionFlags())) || in getWeight()
1178 …state.getVariableManager().getNumAllocatedScalars() < state.getShaderParameters().maxCombinedVaria… in getWeight()
1185 …!state.getVariableManager().hasEntry(IsReadableIntersectingEntry(valueRange, state.getExpressionFl… in getWeight()
1196 …IsWritableSupersetEntry::Iterator first = state.getVariableManager().getBegin(IsWritableSupersetEn… in VariableWrite()
1197 …IsWritableSupersetEntry::Iterator end = state.getVariableManager().getEnd(IsWritableSupersetEntry… in VariableWrite()
1204 m_variable = state.getVariableManager().allocate(valueRange.getType()); in VariableWrite()
1218 const ValueEntry* parentEntry = state.getVariableManager().getParentValue(m_variable); in VariableWrite()
1222 state.getVariableManager().setValue(m_variable, parentEntry->getValueRange()); in VariableWrite()
1230 state.getVariableManager().setValue(m_variable, infRange.asAccess()); in VariableWrite()
1237 !state.getVariableManager().hasEntry(IsWritableSupersetEntry(valueRange))) in getWeight()
1485 int sampler2DCount = countSamplers(state.getVariableManager(), VariableType::TYPE_SAMPLER_2D); in TexLookup()
1486 int samplerCubeCount = countSamplers(state.getVariableManager(), VariableType::TYPE_SAMPLER_CUBE); in TexLookup()
1493 Variable* sampler = state.getVariableManager().allocate(VariableType(samplerType, 1)); in TexLookup()
1494 …state.getVariableManager().setStorage(sampler, Variable::STORAGE_UNIFORM); // Samplers are always … in TexLookup()
1498 …m_sampler = state.getRandom().choose<const ValueEntry*>(state.getVariableManager().getBegin(IsSamp… in TexLookup()
1499 state.getVariableManager().getEnd(IsSamplerEntry(samplerType)))->getVariable(); in TexLookup()