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 49 typedef Vector<deUint32, 2> UVec2;
  /external/deqp/modules/gles31/scripts/
gen-implicit-conversions.py 29 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup
236 "uvec2": [Vec2(x[0], x[1]) for x in IN_UVECTOR],
250 "ivec2": ["uvec2", "vec2"],
251 "uvec2": ["vec2"],
259 "int": ["vec2", "vec3", "vec4", "uvec2", "uvec3", "uvec4"],
265 "uint": ["uvec2", "uvec3", "uvec4"],
269 "uvec2": ["uint", "float"],
280 "ivec2", "uvec2", "ivec3",
291 return name in ["vec2", "ivec2", "uvec2"]
311 return type_name in ["uint", "uvec2", "uvec3", "uvec4"
    [all...]
genutil.py 220 def toUVec2(self): return UVec2(self.x, self.x)
389 def toUVec2(self): return UVec2(self.x, self.y)
396 def toUint(self): return UVec2(int(self.x), int(self.y))
470 class UVec2(Vec2):
477 return "uvec2"
480 return "uvec2(%i, %i)" % (self.x, self.y)
500 def toUVec2(self): return UVec2(self.x, self.y)
619 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)
387 def toUVec2(self): return UVec2(self.x, self.y)
394 def toUint(self): return UVec2(int(self.x), int(self.y))
468 class UVec2(Vec2):
475 return "uvec2"
478 return "uvec2(%i, %i)" % (self.x, self.y)
498 def toUVec2(self): return UVec2(self.x, self.y)
617 def toUVec2(self): return UVec2(self.x, self.y)

Completed in 125 milliseconds