OSDN Git Service

Fix type in Java enums. Not currently used, easier to fix now than when apps are...
authorJason Sams <rjsams@android.com>
Thu, 29 Oct 2009 00:40:13 +0000 (17:40 -0700)
committerJason Sams <rjsams@android.com>
Thu, 29 Oct 2009 00:40:13 +0000 (17:40 -0700)
graphics/java/android/renderscript/ProgramStore.java

index b7d987e..5cbe1b2 100644 (file)
@@ -49,7 +49,7 @@ public class ProgramStore extends BaseObj {
         SRC_ALPHA (4),
         ONE_MINUS_SRC_ALPHA (5),
         DST_ALPHA (6),
-        ONE_MINUS_DST_ALPA (7),
+        ONE_MINUS_DST_ALPHA (7),
         SRC_ALPHA_SATURATE (8);
 
         int mID;
@@ -66,7 +66,7 @@ public class ProgramStore extends BaseObj {
         SRC_ALPHA (4),
         ONE_MINUS_SRC_ALPHA (5),
         DST_ALPHA (6),
-        ONE_MINUS_DST_ALPA (7);
+        ONE_MINUS_DST_ALPHA (7);
 
         int mID;
         BlendDstFunc(int id) {