summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2009-06-22 18:04:45 -0700
committerMathias Agopian <mathias@google.com>2009-06-22 18:09:09 -0700
commitf1bd03d1eb0505a32485b1a52c7c8c5ed4e96765 (patch)
tree69d3cd91761347abef2f504d111640e2e3efa446 /include
parent660951867e959ebe98612742ef1f72d33ea7e9a3 (diff)
downloadframeworks_av-f1bd03d1eb0505a32485b1a52c7c8c5ed4e96765.zip
frameworks_av-f1bd03d1eb0505a32485b1a52c7c8c5ed4e96765.tar.gz
frameworks_av-f1bd03d1eb0505a32485b1a52c7c8c5ed4e96765.tar.bz2
add glTexParameteri() and fix glTexParameteriv()
Diffstat (limited to 'include')
-rw-r--r--include/private/opengles/gl_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/private/opengles/gl_context.h b/include/private/opengles/gl_context.h
index 0c7ad46..a85f275 100644
--- a/include/private/opengles/gl_context.h
+++ b/include/private/opengles/gl_context.h
@@ -456,7 +456,7 @@ struct matrix_stack_t {
void validate();
matrixf_t& top() { return stack[depth]; }
const matrixf_t& top() const { return stack[depth]; }
- const uint32_t top_ops() const { return ops[depth]; }
+ uint32_t top_ops() const { return ops[depth]; }
inline bool isRigidBody() const {
return !(ops[depth] & ~(OP_TRANSLATE|OP_UNIFORM_SCALE|OP_ROTATE));
}