summaryrefslogtreecommitdiffstats
path: root/opengl/libs/GLES2_dbg/src/vertex.cpp
diff options
context:
space:
mode:
authorDavid Li <davidxli@google.com>2011-03-21 16:25:58 -0700
committerDavid Li <davidxli@google.com>2011-03-22 18:42:22 -0700
commitfbfc703c6e77e3441d8833644278a5a79f3ca8e3 (patch)
treeff2b46eaf8647dfa9c5be299b5efec7ed3b7a91f /opengl/libs/GLES2_dbg/src/vertex.cpp
parentf9bc124cfedfed6f1eb9488355576e28a93ab252 (diff)
downloadframeworks_base-fbfc703c6e77e3441d8833644278a5a79f3ca8e3.zip
frameworks_base-fbfc703c6e77e3441d8833644278a5a79f3ca8e3.tar.gz
frameworks_base-fbfc703c6e77e3441d8833644278a5a79f3ca8e3.tar.bz2
GLES2Dbg: added SETPROP expectResponse
to allow "stepping" in functions. Also fix bug in reference frame. Change-Id: Ia33620eaf2c5f4e615f7aad2df277b6afc617060 Signed-off-by: David Li <davidxli@google.com>
Diffstat (limited to 'opengl/libs/GLES2_dbg/src/vertex.cpp')
-rw-r--r--opengl/libs/GLES2_dbg/src/vertex.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/opengl/libs/GLES2_dbg/src/vertex.cpp b/opengl/libs/GLES2_dbg/src/vertex.cpp
index 71ebe36..e02bf9f 100644
--- a/opengl/libs/GLES2_dbg/src/vertex.cpp
+++ b/opengl/libs/GLES2_dbg/src/vertex.cpp
@@ -70,7 +70,7 @@ void Debug_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum
case glesv2debugger::Message_Function_SKIP:
return;
case glesv2debugger::Message_Function_SETPROP:
- SetProp(cmd);
+ SetProp(dbg, cmd);
Receive(cmd);
break;
default:
@@ -135,7 +135,7 @@ void Debug_glDrawArrays(GLenum mode, GLint first, GLsizei count)
case glesv2debugger::Message_Function_SKIP:
return;
case glesv2debugger::Message_Function_SETPROP:
- SetProp(cmd);
+ SetProp(dbg, cmd);
Receive(cmd);
break;
default:
@@ -223,7 +223,7 @@ void Debug_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid*
case glesv2debugger::Message_Function_SKIP:
return;
case glesv2debugger::Message_Function_SETPROP:
- SetProp(cmd);
+ SetProp(dbg, cmd);
Receive(cmd);
break;
default: