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

/external/deqp/framework/common/
H A DtcuVectorType.hpp40 typedef Vector<float, 4> Vec4; typedef in namespace:tcu
H A DtcuTexture.hpp185 Vec4 borderColor;
199 const Vec4& borderColor_ = Vec4(0.0f, 0.0f, 0.0f, 0.0f),
261 Vec4 getPixel (int x, int y, int z = 0) const;
271 Vec4 sample1D (const Sampler& sampler, Sampler::FilterMode filter, float s, int level) const;
272 Vec4 sample2D (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, int depth) const;
273 Vec4 sample3D (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, float r) const;
275 Vec4 sample1DOffset (const Sampler& sampler, Sampler::FilterMode filter, float s, const IVec2& offset) const;
276 Vec4 sample2DOffset (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, const IVec3& offset) const;
277 Vec4 sample3DOffse
190 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) argument
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dcontext_state.h86 struct Vec4 { struct in namespace:gpu::gles2
87 Vec4() { function in struct:gpu::gles2::Vec4
190 std::vector<Vec4> attrib_values;
/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])
382 def toVec4(self): return Vec4(self.x, self.y, 0.0, 0.0)
493 def toVec4(self): return Vec4(sel
597 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])
380 def toVec4(self): return Vec4(self.x, self.y, 0.0, 0.0)
491 def toVec4(self): return Vec4(sel
595 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 148 milliseconds