Lines Matching refs:uniformAddress
776 RValue<Pointer<Byte>> VertexProgram::uniformAddress(int bufferIndex, unsigned int index) in uniformAddress() function in sw::VertexProgram
788 …RValue<Pointer<Byte>> VertexProgram::uniformAddress(int bufferIndex, unsigned int index, Int& offs… in uniformAddress() function in sw::VertexProgram
790 return uniformAddress(bufferIndex, index) + offset * sizeof(float4); in uniformAddress()
800 c.x = c.y = c.z = c.w = *Pointer<Float4>(uniformAddress(src.bufferIndex, i)); in readConstant()
832 c.x = c.y = c.z = c.w = *Pointer<Float4>(uniformAddress(src.bufferIndex, i, loopCounter)); in readConstant()
845 c.x = c.y = c.z = c.w = *Pointer<Float4>(uniformAddress(src.bufferIndex, i, a)); in readConstant()
863 …case Shader::PARAMETER_CONST: a = *Pointer<Float>(uniformAddress(src.bufferIndex, src.rel.index) … in readConstant()
876 c.x = *Pointer<Float4>(uniformAddress(src.bufferIndex, 0, index0), 16); in readConstant()
877 c.y = *Pointer<Float4>(uniformAddress(src.bufferIndex, 0, index1), 16); in readConstant()
878 c.z = *Pointer<Float4>(uniformAddress(src.bufferIndex, 0, index2), 16); in readConstant()
879 c.w = *Pointer<Float4>(uniformAddress(src.bufferIndex, 0, index3), 16); in readConstant()
906 return *Pointer<Int>(uniformAddress(bufferIndex, var.rel.index)) * var.rel.scale; in relativeAddress()