HomeSort by relevance Sort by last modified time
    Searched defs:UVec4 (Results 1 - 3 of 3) sorted by null

  /external/deqp/framework/common/
tcuVectorType.hpp 51 typedef Vector<deUint32, 4> UVec4;
  /external/deqp/modules/gles3/scripts/
genutil.py 244 def toUVec4(self): return UVec4(self.x, self.x, self.x, self.x)
411 def toUVec4(self): return UVec4(self.x, self.y, 0.0, 0.0)
522 def toUVec4(self): return UVec4(self.x, self.y, self.z, 0.0)
641 def toUVec4(self): return UVec4(self.x, self.y, self.z, self.w)
647 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w))
722 class UVec4(Vec4):
729 return "uvec4"
732 return "uvec4(%i, %i, %i, %i)" % (self.x, self.y, self.z, self.w)
  /external/deqp/modules/gles31/scripts/
genutil.py 244 def toUVec4(self): return UVec4(self.x, self.x, self.x, self.x)
413 def toUVec4(self): return UVec4(self.x, self.y, 0.0, 0.0)
524 def toUVec4(self): return UVec4(self.x, self.y, self.z, 0.0)
643 def toUVec4(self): return UVec4(self.x, self.y, self.z, self.w)
649 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w))
724 class UVec4(Vec4):
731 return "uvec4"
734 return "uvec4(%i, %i, %i, %i)" % (self.x, self.y, self.z, self.w)

Completed in 82 milliseconds