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)
384 def toUVec3(self): return UVec3(self.x, self.y, 0.0)
495 def toUVec3(self): return UVec3(self.x, self.y, self.z)
501 def toUint(self): return UVec3(int(self.x), int(self.y), int(self.z))
582 class UVec3(Vec3):
589 return "uvec3"
592 return "uvec3(%i, %i, %i)" % (self.x, self.y, self.z)
614 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)
382 def toUVec3(self): return UVec3(self.x, self.y, 0.0)
493 def toUVec3(self): return UVec3(self.x, self.y, self.z)
499 def toUint(self): return UVec3(int(self.x), int(self.y), int(self.z))
580 class UVec3(Vec3):
587 return "uvec3"
590 return "uvec3(%i, %i, %i)" % (self.x, self.y, self.z)
612 def toUVec3(self): return UVec3(self.x, self.y, self.z)

Completed in 164 milliseconds