Searched refs:toUint (Results 1 - 4 of 4) sorted by relevance
/third_party/vk-gl-cts/modules/gles3/scripts/ |
H A D | genutil.py | 117 def toUint(lst): return [Uint(int(v.x)) for v in lst] function 128 def toUVec4(lst): return [v.toUint().toUVec4() for v in lst] 129 def toUVec3(lst): return [v.toUint().toUVec3() for v in lst] 130 def toUVec2(lst): return [v.toUint().toUVec2() for v in lst] 257 def toUint(self): return Uint(int(self.x)) member in Scalar 345 return Scalar.abs(self).toUint() 348 return Scalar.__neg__(self).toUint() 351 return Scalar.__add__(self, val).toUint() 357 return Scalar.__mul__(self, val).toUint() 360 return Scalar.__div__(self, val).toUint() 416 def toUint(self): return UVec2(int(self.x), int(self.y)) global() member in Vec2 527 def toUint(self): return UVec3(int(self.x), int(self.y), int(self.z)) global() member in Vec3 647 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w)) global() member in Vec4 [all...] |
H A D | gen-conversions.py | 94 return [x.toUint() for x in combineIVec(comps)] 323 genConversionCases([toPos(inFloat), toPos(inInt), inUint, inBool], [toUint]))) 333 genConversionCases([toPos(inVec2), toPos(inVec3), toPos(inVec4), toPos(inIVec2), toPos(inIVec3), toPos(inIVec4), inUVec2, inUVec3, inUVec4, inBVec2, inBVec3, inBVec4], [toUint])))
|
/third_party/vk-gl-cts/modules/gles31/scripts/ |
H A D | genutil.py | 117 def toUint(lst): return [Uint(int(v.x)) for v in lst] function 128 def toUVec4(lst): return [v.toUint().toUVec4() for v in lst] 129 def toUVec3(lst): return [v.toUint().toUVec3() for v in lst] 130 def toUVec2(lst): return [v.toUint().toUVec2() for v in lst] 257 def toUint(self): return Uint(int(self.x)) member in Scalar 347 return Scalar.abs(self).toUint() 350 return Scalar.__neg__(self).toUint() 353 return Scalar.__add__(self, val).toUint() 359 return Scalar.__mul__(self, val).toUint() 362 return Scalar.__div__(self, val).toUint() 418 def toUint(self): return UVec2(int(self.x), int(self.y)) global() member in Vec2 529 def toUint(self): return UVec3(int(self.x), int(self.y), int(self.z)) global() member in Vec3 649 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w)) global() member in Vec4 [all...] |
H A D | gen-implicit-conversions.py | 518 return a.toUint() * Uint(2) 608 return out[0].toUint() 612 return Vec2(out[0], out[1]).toUint() 616 return Vec3(out[0], out[1], out[2]).toUint() 620 return Vec4(out[0], out[1], out[2], out[3]).toUint()
|
Completed in 5 milliseconds