Searched defs:UVec4 (Results 1 - 4 of 4) sorted by relevance
/external/deqp/framework/common/ |
H A D | tcuVectorType.hpp | 51 typedef Vector<deUint32, 4> UVec4; typedef in namespace:tcu
|
/external/deqp/modules/gles31/scripts/ |
H A D | gen-implicit-conversions.py | 29 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup namespace 387 "uvec4": UVec4(1, 2, 3, 4),
|
H A D | genutil.py | 222 def toUVec4(self): return UVec4(self.x, self.x, self.x, self.x) 391 def toUVec4(self): return UVec4(self.x, self.y, 0.0, 0.0) 502 def toUVec4(self): return UVec4(self.x, self.y, self.z, 0.0) 621 def toUVec4(self): return UVec4(self.x, self.y, self.z, self.w) 627 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w)) 702 class UVec4(Vec4): class in inherits:Vec4
|
/external/deqp/modules/gles3/scripts/ |
H A D | genutil.py | 222 def toUVec4(self): return UVec4(self.x, self.x, self.x, self.x) 389 def toUVec4(self): return UVec4(self.x, self.y, 0.0, 0.0) 500 def toUVec4(self): return UVec4(self.x, self.y, self.z, 0.0) 619 def toUVec4(self): return UVec4(self.x, self.y, self.z, self.w) 625 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w)) 700 class UVec4(Vec4): class in inherits:Vec4
|
Completed in 82 milliseconds