Searched refs:Mat2 (Results 1 - 20 of 20) sorted by relevance

/external/deqp/modules/gles2/scripts/
H A Dgen-swizzles.py212 inMat2 = [Mat2(1.0, 0.0, 0.0, 1.0),
213 Mat2(6.5, 12.5, -0.75, 9.975),
214 Mat2(6.5, 12.5, -0.75, 9.975),
215 Mat2(8.0, 16.0, -24.0, -16.0),
216 Mat2(1.0/8.0, 1.0/16.0, 1.0/32.0, 1.0/64.0),
217 Mat2(-18.725, -0.5, -0.0125, 19.975),
218 #Mat2(128.0, -4096.0, 192.0, -1536.0),
219 #Mat2(-1536.0, 8192.0, 6144.0, -6144.0)
H A Dgen-conversions.py256 inMat2 = [Mat2(1.0, 0.0, 0.0, 1.0),
257 Mat2(6.5, 12.5, -0.75, 9.975),
258 Mat2(6.5, 12.5, -0.75, 9.975),
259 Mat2(8.0, 16.0, -24.0, -16.0),
260 Mat2(1.0/8.0, 1.0/16.0, 1.0/32.0, 1.0/64.0),
261 Mat2(-18.725, -0.5, -0.0125, 19.975),
262 #Mat2(128.0, -4096.0, 192.0, -1536.0),
263 #Mat2(-1536.0, 8192.0, 6144.0, -6144.0)
H A Dgenutil.py323 def toMat2(self): return Mat2(float(self.x), 0.0, 0.0, float(self.y));
501 def toMat2(self): return Mat2(float(self.x), float(self.y), float(self.z), float(self.w))
635 class Mat2(Mat): class in inherits:Mat
/external/deqp/modules/gles3/scripts/
H A Dgen-swizzles.py216 inMat2 = [Mat2(1.0, 0.0, 0.0, 1.0),
217 Mat2(6.5, 12.5, -0.75, 9.975),
218 Mat2(6.5, 12.5, -0.75, 9.975),
219 Mat2(8.0, 16.0, -24.0, -16.0),
220 Mat2(1.0/8.0, 1.0/16.0, 1.0/32.0, 1.0/64.0),
221 Mat2(-18.725, -0.5, -0.0125, 19.975),
222 #Mat2(128.0, -4096.0, 192.0, -1536.0),
223 #Mat2(-1536.0, 8192.0, 6144.0, -6144.0)
H A Dgen-conversions.py274 inMat2 = [Mat2(1.0, 0.0, 0.0, 1.0),
275 Mat2(6.5, 12.5, -0.75, 9.975),
276 Mat2(6.5, 12.5, -0.75, 9.975),
277 Mat2(8.0, 16.0, -24.0, -16.0),
278 Mat2(1.0/8.0, 1.0/16.0, 1.0/32.0, 1.0/64.0),
279 Mat2(-18.725, -0.5, -0.0125, 19.975),
280 #Mat2(128.0, -4096.0, 192.0, -1536.0),
281 #Mat2(-1536.0, 8192.0, 6144.0, -6144.0)
H A Dgenutil.py390 def toMat2(self): return Mat2(float(self.x), 0.0, 0.0, float(self.y));
620 def toMat2(self): return Mat2(float(self.x), float(self.y), float(self.z), float(self.w))
782 class Mat2(Mat): class in inherits:Mat
/external/deqp/modules/gles2/functional/
H A Des2fShaderMatrixTests.cpp65 using tcu::Mat2;
94 static const Mat2 s_constInMat2[2] = { tcu::Mat2(s_constInMat20), tcu::Mat2(s_constInMat21) };
160 DECLARE_TYPE_TRAIT(TYPE_FLOAT_MAT2, tcu::Mat2);
342 template <> inline tcu::Mat2 getInputValue<INPUTTYPE_CONST, TYPE_FLOAT_MAT2> (const ShaderEvalContext& evalCtx, int inputNdx) { DE_UNREF(evalCtx); return s_constInMat2[inputNdx]; }
351 template <> inline tcu::Mat2 getInputValue<INPUTTYPE_DYNAMIC, TYPE_FLOAT_MAT2> (const ShaderEvalContext& evalCtx, int inputNdx)
354 tcu::Mat2 m;
386 inline tcu::Vec3 reduceToVec3 (const tcu::Mat2& value) { return tcu::Vec3(value(0, 0), value(0, 1), value(1, 0)+value(1, 1)); }
878 case TYPE_FLOAT_MAT2: writeMatrixConstructor<2, 2>(op, Mat2(s_constInMat
[all...]
H A Des2fTextureMipmapTests.cpp54 using tcu::Mat2;
230 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
234 tcu::Mat2 shearMatrix = tcu::shearMatrix(tcu::Vec2(shearX, 0.0f));
236 tcu::Mat2 transform = rotMatrix * shearMatrix;
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp63 using tcu::Mat2;
263 DECLARE_TYPE_TRAIT(TYPE_FLOAT_MAT2, tcu::Mat2);
496 template <> inline tcu::Mat2 getInputValue<INPUTTYPE_CONST, TYPE_FLOAT_MAT2> (const ShaderEvalContext& evalCtx, int inputNdx) { DE_UNREF(evalCtx); return tcu::Mat2(s_constInMat2x2[inputNdx]); }
511 template <> inline tcu::Mat2 getInputValue<INPUTTYPE_DYNAMIC, TYPE_FLOAT_MAT2> (const ShaderEvalContext& evalCtx, int inputNdx)
514 tcu::Mat2 m;
606 inline tcu::Vec3 reduceToVec3 (const tcu::Mat2& value) { return tcu::Vec3(value(0, 0), value(0, 1), value(1, 0)+value(1, 1)); }
767 const tcu::Matrix<float, 2, 2> zeroMat = Mat2(nullField);
813 const tcu::Matrix<float, 2, 2> invA = inverse(Mat2(areaA));
814 const tcu::Matrix<float, 2, 2> matB = Mat2(area
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderMatrixTests.cpp67 using tcu::Mat2;
268 DECLARE_TYPE_TRAIT(TYPE_FLOAT_MAT2, tcu::Mat2);
501 template <> inline tcu::Mat2 getInputValue<INPUTTYPE_CONST, TYPE_FLOAT_MAT2> (const ShaderEvalContext& evalCtx, int inputNdx) { DE_UNREF(evalCtx); return tcu::Mat2(s_constInMat2x2[inputNdx]); }
516 template <> inline tcu::Mat2 getInputValue<INPUTTYPE_DYNAMIC, TYPE_FLOAT_MAT2> (const ShaderEvalContext& evalCtx, int inputNdx)
519 tcu::Mat2 m;
611 inline tcu::Vec3 reduceToVec3 (const tcu::Mat2& value) { return tcu::Vec3(value(0, 0), value(0, 1), value(1, 0)+value(1, 1)); }
772 const tcu::Matrix<float, 2, 2> zeroMat = Mat2(nullField);
818 const tcu::Matrix<float, 2, 2> invA = inverse(Mat2(areaA));
819 const tcu::Matrix<float, 2, 2> matB = Mat2(area
[all...]
H A Des3fTextureMipmapTests.cpp274 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
278 tcu::Mat2 shearMatrix = tcu::shearMatrix(tcu::Vec2(shearX, 0.0f));
280 tcu::Mat2 transform = rotMatrix * shearMatrix;
/external/deqp/framework/opengl/
H A DgluShaderUtil.hpp237 template <> struct DataTypeTraits<tcu::Mat2> { enum { DATATYPE = TYPE_FLOAT_MAT2 }; };
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureMipmapTests.cpp53 using tcu::Mat2;
226 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
230 tcu::Mat2 shearMatrix = tcu::shearMatrix(tcu::Vec2(shearX, 0.0f));
232 tcu::Mat2 transform = rotMatrix * shearMatrix;
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp3556 ExprP<Mat2> mat = args.a;
3618 class Inverse<2> : public DerivedFunc<Signature<Mat2, Mat2> >
3629 ExprP<Mat2> mat = args.a;
3650 ExprP<Mat2> invA = bindExpression("invA", ctx,
3664 ExprP<Mat2> t3 = outerProduct(t2, matC);
3665 ExprP<Mat2> t4 = t3 * invA;
3666 ExprP<Mat2> t5 = invA + t4;
3667 ExprP<Mat2> blockA = bindExpression("blockA", ctx, t5);
3690 ExprP<Mat2> inv
[all...]
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3607 ExprP<Mat2> mat = args.a;
3669 class Inverse<2> : public DerivedFunc<Signature<Mat2, Mat2> >
3680 ExprP<Mat2> mat = args.a;
3701 ExprP<Mat2> invA = bindExpression("invA", ctx,
3715 ExprP<Mat2> t3 = outerProduct(t2, matC);
3716 ExprP<Mat2> t4 = t3 * invA;
3717 ExprP<Mat2> t5 = invA + t4;
3718 ExprP<Mat2> blockA = bindExpression("blockA", ctx, t5);
3741 ExprP<Mat2> inv
[all...]
H A DglsLongStressTestUtil.cpp33 using tcu::Mat2;
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureMipmapTests.cpp218 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
222 tcu::Mat2 shearMatrix = tcu::shearMatrix(tcu::Vec2(shearX, 0.0f));
224 tcu::Mat2 transform = rotMatrix * shearMatrix;
/external/opencv3/modules/imgproc/test/ocl/
H A Dtest_imgproc.cpp340 OCL_TEST_P(Integral, Mat2)
/external/deqp/modules/gles31/scripts/
H A Dgenutil.py392 def toMat2(self): return Mat2(float(self.x), 0.0, 0.0, float(self.y));
622 def toMat2(self): return Mat2(float(self.x), float(self.y), float(self.z), float(self.w))
784 class Mat2(Mat): class in inherits:Mat
/external/deqp/framework/common/
H A DtcuMatrix.hpp492 typedef Matrix2f Mat2; typedef in namespace:tcu

Completed in 403 milliseconds