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

  /external/deqp/framework/common/
tcuVectorType.hpp 48 typedef Vector<deUint32, 4> UVec4;
  /external/deqp/modules/gles31/scripts/
gen-implicit-conversions.py 7 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup
218 "uvec4": [Vec4(x[0], x[1], x[2], x[3]) for x in IN_UVECTOR],
232 "ivec4": ["uvec4", "vec4"],
233 "uvec4": ["vec4"]
237 "int": ["vec2", "vec3", "vec4", "uvec2", "uvec3", "uvec4"],
243 "uint": ["uvec2", "uvec3", "uvec4"],
249 "uvec4": ["uint", "float"],
259 "uvec3", "ivec4", "uvec4",
275 return name in ["vec4", "ivec4", "uvec4"]
289 return type_name in ["uint", "uvec2", "uvec3", "uvec4"]
    [all...]
genutil.py 222 def toUVec4(self): return UVec4(self.x, self.x, self.x, self.x)
385 def toUVec4(self): return UVec4(self.x, self.y, 0.0, 0.0)
496 def toUVec4(self): return UVec4(self.x, self.y, self.z, 0.0)
615 def toUVec4(self): return UVec4(self.x, self.y, self.z, self.w)
621 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w))
696 class UVec4(Vec4):
703 return "uvec4"
706 return "uvec4(%i, %i, %i, %i)" % (self.x, self.y, self.z, self.w)
  /external/deqp/modules/gles3/scripts/
genutil.py 222 def toUVec4(self): return UVec4(self.x, self.x, self.x, self.x)
383 def toUVec4(self): return UVec4(self.x, self.y, 0.0, 0.0)
494 def toUVec4(self): return UVec4(self.x, self.y, self.z, 0.0)
613 def toUVec4(self): return UVec4(self.x, self.y, self.z, self.w)
619 def toUint(self): return UVec4(int(self.x), int(self.y), int(self.z), int(self.w))
694 class UVec4(Vec4):
701 return "uvec4"
704 return "uvec4(%i, %i, %i, %i)" % (self.x, self.y, self.z, self.w)

Completed in 66 milliseconds