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

  /external/deqp/framework/common/
tcuVectorType.hpp 47 typedef Vector<deUint32, 3> UVec3;
  /external/deqp/modules/gles31/scripts/
gen-implicit-conversions.py 7 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup
216 "uvec3": [Vec3(x[0], x[1], x[2]) for x in IN_UVECTOR],
230 "ivec3": ["uvec3", "vec3"],
231 "uvec3": ["vec3"],
237 "int": ["vec2", "vec3", "vec4", "uvec2", "uvec3", "uvec4"],
243 "uint": ["uvec2", "uvec3", "uvec4"],
248 "uvec3": ["uint", "float"],
259 "uvec3", "ivec4", "uvec4",
272 return name in ["vec3", "ivec3", "uvec3"]
289 return type_name in ["uint", "uvec2", "uvec3", "uvec4"
    [all...]
genutil.py 221 def toUVec3(self): return UVec3(self.x, self.x, self.x)
390 def toUVec3(self): return UVec3(self.x, self.y, 0.0)
501 def toUVec3(self): return UVec3(self.x, self.y, self.z)
507 def toUint(self): return UVec3(int(self.x), int(self.y), int(self.z))
588 class UVec3(Vec3):
595 return "uvec3"
598 return "uvec3(%i, %i, %i)" % (self.x, self.y, self.z)
620 def toUVec3(self): return UVec3(self.x, self.y, self.z)
  /external/deqp/modules/gles3/scripts/
genutil.py 221 def toUVec3(self): return UVec3(self.x, self.x, self.x)
388 def toUVec3(self): return UVec3(self.x, self.y, 0.0)
499 def toUVec3(self): return UVec3(self.x, self.y, self.z)
505 def toUint(self): return UVec3(int(self.x), int(self.y), int(self.z))
586 class UVec3(Vec3):
593 return "uvec3"
596 return "uvec3(%i, %i, %i)" % (self.x, self.y, self.z)
618 def toUVec3(self): return UVec3(self.x, self.y, self.z)

Completed in 975 milliseconds