summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2016-04-11 22:16:41 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-04-11 22:16:41 +0000
commit4e5e5c729390eb7ec1c438e196aa2a34521da7a2 (patch)
treecfa20ad4ac27f1da321bf01b07873bee031668aa /support
parent8ed0f33ccdd68bf5f619810cbd7ac7eee904fc05 (diff)
parent4f44acb8ed103c292258bc1fbfb62efac0db5d9b (diff)
downloadrs-4e5e5c729390eb7ec1c438e196aa2a34521da7a2.tar.gz
Merge "Fix typos for the word "Unsupported"." am: 795081d
am: 442e291 * commit '442e2919a394e767fe5573a9114d88468001ef2e': Fix typos for the word "Unsupported". Change-Id: Ia01a577f7427c4294a19e9172a841447be26302e
Diffstat (limited to 'support')
-rw-r--r--support/java/src/android/support/v8/renderscript/ScriptIntrinsicBlur.java2
-rw-r--r--support/java/src/android/support/v8/renderscript/ScriptIntrinsicColorMatrix.java6
-rw-r--r--support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve3x3.java2
-rw-r--r--support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve5x5.java2
-rw-r--r--support/java/src/android/support/v8/renderscript/ScriptIntrinsicHistogram.java2
-rw-r--r--support/java/src/android/support/v8/renderscript/ScriptIntrinsicResize.java2
6 files changed, 8 insertions, 8 deletions
diff --git a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicBlur.java b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicBlur.java
index 2d2923e4..e577d674 100644
--- a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicBlur.java
+++ b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicBlur.java
@@ -49,7 +49,7 @@ public class ScriptIntrinsicBlur extends ScriptIntrinsic {
*/
public static ScriptIntrinsicBlur create(RenderScript rs, Element e) {
if ((!e.isCompatible(Element.U8_4(rs))) && (!e.isCompatible(Element.U8(rs)))) {
- throw new RSIllegalArgumentException("Unsuported element type.");
+ throw new RSIllegalArgumentException("Unsupported element type.");
}
long id;
boolean mUseIncSupp = rs.isUseNative() &&
diff --git a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicColorMatrix.java b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicColorMatrix.java
index 5aa95720..f03526ed 100644
--- a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicColorMatrix.java
+++ b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicColorMatrix.java
@@ -51,7 +51,7 @@ public class ScriptIntrinsicColorMatrix extends ScriptIntrinsic {
*/
public static ScriptIntrinsicColorMatrix create(RenderScript rs, Element e) {
if (!e.isCompatible(Element.U8_4(rs))) {
- throw new RSIllegalArgumentException("Unsuported element type.");
+ throw new RSIllegalArgumentException("Unsupported element type.");
}
long id;
boolean mUseIncSupp = rs.isUseNative() &&
@@ -231,7 +231,7 @@ public class ScriptIntrinsicColorMatrix extends ScriptIntrinsic {
!ain.getElement().isCompatible(Element.F32_3(mRS)) &&
!ain.getElement().isCompatible(Element.F32_4(mRS))) {
- throw new RSIllegalArgumentException("Unsuported element type.");
+ throw new RSIllegalArgumentException("Unsupported element type.");
}
if (!aout.getElement().isCompatible(Element.U8(mRS)) &&
@@ -243,7 +243,7 @@ public class ScriptIntrinsicColorMatrix extends ScriptIntrinsic {
!aout.getElement().isCompatible(Element.F32_3(mRS)) &&
!aout.getElement().isCompatible(Element.F32_4(mRS))) {
- throw new RSIllegalArgumentException("Unsuported element type.");
+ throw new RSIllegalArgumentException("Unsupported element type.");
}
forEach(0, ain, aout, null, opt);
diff --git a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve3x3.java b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve3x3.java
index e6a6b7e2..17889aad 100644
--- a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve3x3.java
+++ b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve3x3.java
@@ -60,7 +60,7 @@ public class ScriptIntrinsicConvolve3x3 extends ScriptIntrinsic {
!e.isCompatible(Element.F32_2(rs)) &&
!e.isCompatible(Element.F32_3(rs)) &&
!e.isCompatible(Element.F32_4(rs))) {
- throw new RSIllegalArgumentException("Unsuported element type.");
+ throw new RSIllegalArgumentException("Unsupported element type.");
}
long id;
boolean mUseIncSupp = rs.isUseNative() &&
diff --git a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve5x5.java b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve5x5.java
index 17397fa2..2c591bad 100644
--- a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve5x5.java
+++ b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicConvolve5x5.java
@@ -61,7 +61,7 @@ public class ScriptIntrinsicConvolve5x5 extends ScriptIntrinsic {
!e.isCompatible(Element.F32_2(rs)) &&
!e.isCompatible(Element.F32_3(rs)) &&
!e.isCompatible(Element.F32_4(rs))) {
- throw new RSIllegalArgumentException("Unsuported element type.");
+ throw new RSIllegalArgumentException("Unsupported element type.");
}
long id;
boolean mUseIncSupp = rs.isUseNative() &&
diff --git a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicHistogram.java b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicHistogram.java
index 3ed48f9b..e3e64063 100644
--- a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicHistogram.java
+++ b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicHistogram.java
@@ -50,7 +50,7 @@ public class ScriptIntrinsicHistogram extends ScriptIntrinsic {
(!e.isCompatible(Element.U8_3(rs))) &&
(!e.isCompatible(Element.U8_2(rs))) &&
(!e.isCompatible(Element.U8(rs)))) {
- throw new RSIllegalArgumentException("Unsuported element type.");
+ throw new RSIllegalArgumentException("Unsupported element type.");
}
long id;
boolean mUseIncSupp = rs.isUseNative() &&
diff --git a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicResize.java b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicResize.java
index 2fdf23ec..61c169ca 100644
--- a/support/java/src/android/support/v8/renderscript/ScriptIntrinsicResize.java
+++ b/support/java/src/android/support/v8/renderscript/ScriptIntrinsicResize.java
@@ -69,7 +69,7 @@ public class ScriptIntrinsicResize extends ScriptIntrinsic {
!e.isCompatible(Element.F32_2(mRS)) &&
!e.isCompatible(Element.F32_3(mRS)) &&
!e.isCompatible(Element.F32_4(mRS))) {
- throw new RSIllegalArgumentException("Unsuported element type.");
+ throw new RSIllegalArgumentException("Unsupported element type.");
}
mInput = ain;