aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLSwizzle.h
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2017-09-18 02:41:08 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-18 03:01:47 +0000
commit27185a9b9756d2f5fcc077c6c2c005259d4ba517 (patch)
tree7b1747160cb0fb3fb69ecd61de24f4310ee8cf7b /src/sksl/ir/SkSLSwizzle.h
parent56fbbd65807d1c4ff63b5233764c6e15cba51bb4 (diff)
Revert "Revert "Revert "Switched highp float to highfloat and mediump float to half."""
This reverts commit 05d5a13fea6246648de7e41358ed338d53c85ea2. Reason for revert: looks like it broke filterfastbounds Original change's description: > Revert "Revert "Switched highp float to highfloat and mediump float to half."" > > This reverts commit 1d816b92bb7cf2258007f3f74ffd143b89f25d01. > > Bug: skia: > Change-Id: I388b5e5e9bf619db48297a80c9a80c039f26c9f1 > Reviewed-on: https://skia-review.googlesource.com/46464 > Reviewed-by: Brian Salomon <bsalomon@google.com> > Commit-Queue: Ethan Nicholas <ethannicholas@google.com> TBR=bsalomon@google.com,ethannicholas@google.com # Not skipping CQ checks because original CL landed > 1 day ago. Bug: skia: Change-Id: Iddf6aef2ab084aa73da7ceebdfc303a1d2b80cde Reviewed-on: https://skia-review.googlesource.com/47441 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'src/sksl/ir/SkSLSwizzle.h')
-rw-r--r--src/sksl/ir/SkSLSwizzle.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/sksl/ir/SkSLSwizzle.h b/src/sksl/ir/SkSLSwizzle.h
index 5512c852b3..3256ef211a 100644
--- a/src/sksl/ir/SkSLSwizzle.h
+++ b/src/sksl/ir/SkSLSwizzle.h
@@ -32,12 +32,6 @@ static const Type& get_type(const Context& context, Expression& value, size_t co
case 3: return *context.fFloat3_Type;
case 4: return *context.fFloat4_Type;
}
- } else if (base == *context.fHalf_Type) {
- switch (count) {
- case 2: return *context.fHalf2_Type;
- case 3: return *context.fHalf3_Type;
- case 4: return *context.fHalf4_Type;
- }
} else if (base == *context.fDouble_Type) {
switch (count) {
case 2: return *context.fDouble2_Type;
@@ -50,24 +44,12 @@ static const Type& get_type(const Context& context, Expression& value, size_t co
case 3: return *context.fInt3_Type;
case 4: return *context.fInt4_Type;
}
- } else if (base == *context.fShort_Type) {
- switch (count) {
- case 2: return *context.fShort2_Type;
- case 3: return *context.fShort3_Type;
- case 4: return *context.fShort4_Type;
- }
} else if (base == *context.fUInt_Type) {
switch (count) {
case 2: return *context.fUInt2_Type;
case 3: return *context.fUInt3_Type;
case 4: return *context.fUInt4_Type;
}
- } else if (base == *context.fUShort_Type) {
- switch (count) {
- case 2: return *context.fUShort2_Type;
- case 3: return *context.fUShort3_Type;
- case 4: return *context.fUShort4_Type;
- }
} else if (base == *context.fBool_Type) {
switch (count) {
case 2: return *context.fBool2_Type;