OSDN Git Service

[DO NOT MERGE] Build fix.
authorSunny Goyal <sunnygoyal@google.com>
Fri, 26 Jun 2015 22:52:54 +0000 (15:52 -0700)
committerSunny Goyal <sunnygoyal@google.com>
Fri, 26 Jun 2015 22:52:54 +0000 (15:52 -0700)
Change-Id: I625b92d6e4e19aa903e1e1e483c4330e2b631ce3

WallpaperPicker/src/com/android/gallery3d/glrenderer/UploadedTexture.java

index 5fdddf2..417102a 100644 (file)
@@ -219,7 +219,7 @@ public abstract class UploadedTexture extends BasicTexture {
                 int texWidth = getTextureWidth();
                 int texHeight = getTextureHeight();
 
-                assertTrue(bWidth <= texWidth && bHeight <= texHeight);
+                Utils.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
 
                 // Upload the bitmap to a new texture.
                 mId = canvas.getGLId().generateTexture();