From b12f99b31528a9ab9aa8f5c9fcfb57ad4c8b0517 Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Mon, 22 Jun 2009 18:04:45 -0700 Subject: add glTexParameteri() and fix glTexParameteriv() --- include/private/opengles/gl_context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/private/opengles') 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)); } -- cgit v1.1