Home
last modified time | relevance | path

Searched refs:SkMatrix44 (Results 1 – 9 of 9) sorted by relevance

/external/skia/tests/
DMatrix44Test.cpp56 static bool nearly_equal(const SkMatrix44& a, const SkMatrix44& b) { in nearly_equal()
68 static bool is_identity(const SkMatrix44& m) { in is_identity()
69 SkMatrix44 identity(SkMatrix44::kIdentity_Constructor); in is_identity()
80 SkMatrix44* placeholderMatrix = new SkMatrix44(SkMatrix44::kUninitialized_Constructor); in test_constructor()
81 SkAutoTDelete<SkMatrix44> deleteMe(placeholderMatrix); in test_constructor()
92SkMatrix44* testMatrix = new(placeholderMatrix) SkMatrix44(SkMatrix44::kUninitialized_Constructor); in test_constructor()
103 testMatrix = new(placeholderMatrix) SkMatrix44(SkMatrix44::kIdentity_Constructor); in test_constructor()
106 REPORTER_ASSERT(reporter, *testMatrix == SkMatrix44::I()); in test_constructor()
109 SkMatrix44 scaleMatrix(SkMatrix44::kUninitialized_Constructor); in test_constructor()
112 testMatrix = new(&scaleMatrix) SkMatrix44(SkMatrix::I()); in test_constructor()
[all …]
/external/skia/bench/
DMatrix44Bench.cpp47 , fM0(SkMatrix44::kIdentity_Constructor) in EqualsMatrix44Bench()
48 , fM1(SkMatrix44::kIdentity_Constructor) in EqualsMatrix44Bench()
49 , fM2(SkMatrix44::kIdentity_Constructor) in EqualsMatrix44Bench()
63 SkMatrix44 fM0, fM1, fM2;
71 , mat(SkMatrix44::kIdentity_Constructor) in SetIdentityMatrix44Bench()
87 SkMatrix44 mat;
95 , fM0(SkMatrix44::kUninitialized_Constructor) in PreScaleMatrix44Bench()
107 SkMatrix44 fM0;
116 , fM0(SkMatrix44::kUninitialized_Constructor) in InvertMatrix44Bench()
117 , fM1(SkMatrix44::kUninitialized_Constructor) in InvertMatrix44Bench()
[all …]
/external/skia/include/utils/
DSkMatrix44.h129 class SK_API SkMatrix44 {
139 SkMatrix44(Uninitialized_Constructor) { } in SkMatrix44() function
140 SkMatrix44(Identity_Constructor) { this->setIdentity(); } in SkMatrix44() function
143 SkMatrix44() { this->setIdentity(); } in SkMatrix44() function
145 SkMatrix44(const SkMatrix44& src) { in SkMatrix44() function
150 SkMatrix44(const SkMatrix44& a, const SkMatrix44& b) { in SkMatrix44() function
154 SkMatrix44& operator=(const SkMatrix44& src) {
162 bool operator==(const SkMatrix44& other) const;
163 bool operator!=(const SkMatrix44& other) const {
175 SkMatrix44(const SkMatrix&);
[all …]
/external/skia/src/utils/
DSkMatrix44.cpp15 bool SkMatrix44::operator==(const SkMatrix44& other) const { in operator ==()
52 int SkMatrix44::computeTypeMask() const { in computeTypeMask()
77 void SkMatrix44::asColMajorf(float dst[]) const { in asColMajorf()
88 void SkMatrix44::asColMajord(double dst[]) const { in asColMajord()
99 void SkMatrix44::asRowMajorf(float dst[]) const { in asRowMajorf()
111 void SkMatrix44::asRowMajord(double dst[]) const { in asRowMajord()
123 void SkMatrix44::setColMajorf(const float src[]) { in setColMajorf()
136 void SkMatrix44::setColMajord(const double src[]) { in setColMajord()
149 void SkMatrix44::setRowMajorf(const float src[]) { in setRowMajorf()
162 void SkMatrix44::setRowMajord(const double src[]) { in setRowMajord()
[all …]
/external/skia/samplecode/
DSampleSkLayer.cpp15 static void test_inv(const char label[], const SkMatrix44& mat) { in test_inv()
19 SkMatrix44 inv; in test_inv()
26 SkMatrix44 a, b; in test_inv()
40 const SkMatrix44& mat, in test_map()
52 static void test_33(const SkMatrix44& mat, in test_33()
66 SkMatrix44 m0, m1, m2; in test44()
/external/skia/gyp/
Dutils.gypi31 '<(skia_include_path)/utils/SkMatrix44.h',
70 '<(skia_src_path)/utils/SkMatrix44.cpp',
DSampleApp.gyp143 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't compile
/external/skia/experimental/iOSSampleApp/iOSSampleApp.xcodeproj/
Dproject.pbxproj250 …0E058013B123DE0064D447 /* SkMatrix44.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 260E056013…
1048 …3B123DE0064D447 /* SkMatrix44.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
1068 …23DE0064D447 /* SkMatrix44.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
2311 260E053A13B123DE0064D447 /* SkMatrix44.h */,
2347 260E056013B123DE0064D447 /* SkMatrix44.cpp */,
3147 260E058013B123DE0064D447 /* SkMatrix44.cpp in Sources */,
/external/skia/
DAndroid.mk405 src/utils/SkMatrix44.cpp \