Searched defs:Vec4 (Results 1 - 7 of 7) sorted by relevance

/external/deqp/framework/common/
H A DtcuVectorType.hpp40 typedef Vector<float, 4> Vec4; typedef in namespace:tcu
H A DtcuTexture.hpp247 const Vec4& borderColor_ = Vec4(0.0f, 0.0f, 0.0f, 0.0f),
275 , borderColor (Vec4(0.0f, 0.0f, 0.0f, 0.0f))
320 Vec4 getPixel (int x, int y, int z = 0) const;
330 Vec4 sample1D (const Sampler& sampler, Sampler::FilterMode filter, float s, int level) const;
331 Vec4 sample2D (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, int depth) const;
332 Vec4 sample3D (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, float r) const;
334 Vec4 sample1DOffset (const Sampler& sampler, Sampler::FilterMode filter, float s, const IVec2& offset) const;
335 Vec4 sample2DOffset (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, const IVec3& offset) const;
336 Vec4 sample3DOffse
238 Sampler(WrapMode wrapS_, WrapMode wrapT_, WrapMode wrapR_, FilterMode minFilter_, FilterMode magFilter_, float lodThreshold_ = 0.0f, bool normalizedCoords_ = true, CompareMode compare_ = COMPAREMODE_NONE, int compareChannel_ = 0, const Vec4& borderColor_ = Vec4(0.0f, 0.0f, 0.0f, 0.0f), bool seamlessCubeMap_ = false, DepthStencilMode depthStencilMode_ = MODE_DEPTH) argument
[all...]
/external/deqp/modules/gles31/scripts/
H A Dgen-implicit-conversions.py7 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup namespace
217 "ivec4": [Vec4(x[0], x[1], x[2], x[3]) for x in IN_IVECTOR],
218 "uvec4": [Vec4(x[0], x[1], x[2], x[3]) for x in IN_UVECTOR],
222 "vec4": [Vec4(x[0], x[1], x[2], x[3]).toFloat() for x in IN_IVECTOR],
284 elif isinstance(a, Scalar) and isinstance(b, Vec4):
361 "vec4": Vec4(1.0, 2.0, 3.0, 4.0),
596 return Vec4(out[0], out[1], out[2], out[3]).toFloat()
598 return Vec4(out[0], out[1], out[2], out[3]).toUint()
H A Dgenutil.py126 ret = [Vec4(random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx)) for x in xrange(count)]
133 ret = [Vec4(random.random() >= 0.5, random.random() >= 0.5, random.random() >= 0.5, random.random() >= 0.5) for x in xrange(count)]
219 def toVec4(self): return Vec4(self.x, self.x, self.x, self.x)
299 elif isinstance(val, Vec4):
300 return Vec4(self.x * val.x, self.x * val.y, self.x * val.z, self.x * val.w)
311 elif isinstance(val, Vec4):
312 return Vec4(self.x / val.x, self.x / val.y, self.x / val.z, self.x / val.w)
349 else: return Vec4(lst[0], lst[1], lst[2], lst[3])
388 def toVec4(self): return Vec4(self.x, self.y, 0.0, 0.0)
499 def toVec4(self): return Vec4(sel
603 class Vec4(Vec): class in inherits:Vec
[all...]
/external/deqp/modules/gles2/scripts/
H A Dgenutil.py116 ret = [Vec4(random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx)) for x in xrange(count)]
123 ret = [Vec4(random.random() >= 0.5, random.random() >= 0.5, random.random() >= 0.5, random.random() >= 0.5) for x in xrange(count)]
206 def toVec4(self): return Vec4(self.x, self.x, self.x, self.x)
265 elif isinstance(val, Vec4):
266 return Vec4(self.x * val.x, self.x * val.y, self.x * val.z, self.x * val.w)
277 elif isinstance(val, Vec4):
278 return Vec4(self.x / val.x, self.x / val.y, self.x / val.z, self.x / val.w)
289 else: return Vec4(lst[0], lst[1], lst[2], lst[3])
322 def toVec4(self): return Vec4(self.x, self.y, 0.0, 0.0)
408 def toVec4(self): return Vec4(sel
485 class Vec4(Vec): class in inherits:Vec
[all...]
/external/deqp/modules/gles3/scripts/
H A Dgenutil.py126 ret = [Vec4(random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx), random.uniform(mn, mx)) for x in xrange(count)]
133 ret = [Vec4(random.random() >= 0.5, random.random() >= 0.5, random.random() >= 0.5, random.random() >= 0.5) for x in xrange(count)]
219 def toVec4(self): return Vec4(self.x, self.x, self.x, self.x)
297 elif isinstance(val, Vec4):
298 return Vec4(self.x * val.x, self.x * val.y, self.x * val.z, self.x * val.w)
309 elif isinstance(val, Vec4):
310 return Vec4(self.x / val.x, self.x / val.y, self.x / val.z, self.x / val.w)
347 else: return Vec4(lst[0], lst[1], lst[2], lst[3])
386 def toVec4(self): return Vec4(self.x, self.y, 0.0, 0.0)
497 def toVec4(self): return Vec4(sel
601 class Vec4(Vec): class in inherits:Vec
[all...]
/external/ceres-solver/examples/
H A Dlibmv_bundle_adjuster.cc118 typedef Eigen::Vector4d Vec4; typedef

Completed in 571 milliseconds