aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLType.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLType.cpp')
-rw-r--r--src/sksl/ir/SkSLType.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sksl/ir/SkSLType.cpp b/src/sksl/ir/SkSLType.cpp
index d28c4f0666..c919cbc8ae 100644
--- a/src/sksl/ir/SkSLType.cpp
+++ b/src/sksl/ir/SkSLType.cpp
@@ -4,7 +4,7 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-
+
#include "SkSLType.h"
#include "SkSLContext.h"
@@ -22,7 +22,7 @@ bool Type::determineCoercionCost(const Type& other, int* outCost) const {
return false;
}
if (this->kind() == kMatrix_Kind) {
- if (this->columns() == other.columns() &&
+ if (this->columns() == other.columns() &&
this->rows() == other.rows()) {
return this->componentType().determineCoercionCost(other.componentType(), outCost);
}