summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/com/android/gallery3d/ui/BasicTexture.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/gallery3d/ui/BasicTexture.java b/src/com/android/gallery3d/ui/BasicTexture.java
index 784b499ca..7b8e30de4 100644
--- a/src/com/android/gallery3d/ui/BasicTexture.java
+++ b/src/com/android/gallery3d/ui/BasicTexture.java
@@ -33,7 +33,8 @@ abstract class BasicTexture implements Texture {
protected static final int STATE_LOADED = 1;
protected static final int STATE_ERROR = -1;
- private static final int MAX_TEXTURE_SIZE = 2048;
+ // Log a warning if a texture is larger along a dimension
+ private static final int MAX_TEXTURE_SIZE = 4096;
protected int mId;
protected int mState;