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

  /external/deqp/framework/common/
tcuVectorType.hpp 46 typedef Vector<deUint32, 2> UVec2;
  /external/deqp/modules/gles31/scripts/
gen-implicit-conversions.py 7 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup
214 "uvec2": [Vec2(x[0], x[1]) for x in IN_UVECTOR],
228 "ivec2": ["uvec2", "vec2"],
229 "uvec2": ["vec2"],
237 "int": ["vec2", "vec3", "vec4", "uvec2", "uvec3", "uvec4"],
243 "uint": ["uvec2", "uvec3", "uvec4"],
247 "uvec2": ["uint", "float"],
258 "ivec2", "uvec2", "ivec3",
269 return name in ["vec2", "ivec2", "uvec2"]
289 return type_name in ["uint", "uvec2", "uvec3", "uvec4"
    [all...]
genutil.py 220 def toUVec2(self): return UVec2(self.x, self.x)
383 def toUVec2(self): return UVec2(self.x, self.y)
390 def toUint(self): return UVec2(int(self.x), int(self.y))
464 class UVec2(Vec2):
471 return "uvec2"
474 return "uvec2(%i, %i)" % (self.x, self.y)
494 def toUVec2(self): return UVec2(self.x, self.y)
613 def toUVec2(self): return UVec2(self.x, self.y)
  /external/deqp/modules/gles3/scripts/
genutil.py 220 def toUVec2(self): return UVec2(self.x, self.x)
381 def toUVec2(self): return UVec2(self.x, self.y)
388 def toUint(self): return UVec2(int(self.x), int(self.y))
462 class UVec2(Vec2):
469 return "uvec2"
472 return "uvec2(%i, %i)" % (self.x, self.y)
492 def toUVec2(self): return UVec2(self.x, self.y)
611 def toUVec2(self): return UVec2(self.x, self.y)

Completed in 320 milliseconds