aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2014-08-14 18:52:35 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-08-14 16:10:21 +0000
commit4d05f33f9ac64d5570e0ae841bcb33101a8f1ba3 (patch)
tree600734143a78b987dd54ba77eab66bf174fe6c1a
parentf68260f91fe2eee6687d6108eaff2d8f9319937d (diff)
parenta1394e92cfde2cbcbf3121c37a43b186d47efb51 (diff)
downloadsdk-4d05f33f9ac64d5570e0ae841bcb33101a8f1ba3.tar.gz
sdk-4d05f33f9ac64d5570e0ae841bcb33101a8f1ba3.tar.bz2
sdk-4d05f33f9ac64d5570e0ae841bcb33101a8f1ba3.zip
Merge "gltrace: Increase TEXTURE_UNIT_COUNT and MAX_VERTEX_ATTRIBS" into idea133
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/GLState.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/GLState.java b/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/GLState.java
index 62305866b..04ce676c2 100644
--- a/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/GLState.java
+++ b/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/GLState.java
@@ -23,10 +23,10 @@ import java.util.Collections;
public class GLState {
/** # of texture units modeled in the GL State. */
- public static final int TEXTURE_UNIT_COUNT = 16;
+ public static final int TEXTURE_UNIT_COUNT = 32;
/** # of vertex attributes */
- private static final int MAX_VERTEX_ATTRIBS = 8;
+ private static final int MAX_VERTEX_ATTRIBS = 16;
private static GLState sGLState = new GLState();