summaryrefslogtreecommitdiff
path: root/opengl/libagl/state.cpp
diff options
context:
space:
mode:
author Mark Salyzyn <salyzyn@google.com> 2014-03-13 15:26:10 +0000
committer Android Git Automerger <android-git-automerger@android.com> 2014-03-13 15:26:10 +0000
commitd4dabf872ac0a12e12aebae9032f7d62762c2aeb (patch)
treea4c803ecda0a5ddb4655ba135e175d1f57f3d17c /opengl/libagl/state.cpp
parentffd353a73eb7794ef556c4e646f866b580a03abb (diff)
parentcdbf28b3f7f5327f4cb0eb95b8326bf4c24c87ba (diff)
am cdbf28b3: Merge "native frameworks: 64-bit compile issues"
* commit 'cdbf28b3f7f5327f4cb0eb95b8326bf4c24c87ba': native frameworks: 64-bit compile issues
Diffstat (limited to 'opengl/libagl/state.cpp')
-rw-r--r--opengl/libagl/state.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/opengl/libagl/state.cpp b/opengl/libagl/state.cpp
index 4bc653a02a..1d5def5896 100644
--- a/opengl/libagl/state.cpp
+++ b/opengl/libagl/state.cpp
@@ -219,11 +219,11 @@ using namespace android;
#endif
// These ones are super-easy, we're not supporting those features!
-void glSampleCoverage(GLclampf value, GLboolean invert) {
+void glSampleCoverage(GLclampf /*value*/, GLboolean /*invert*/) {
}
-void glSampleCoveragex(GLclampx value, GLboolean invert) {
+void glSampleCoveragex(GLclampx /*value*/, GLboolean /*invert*/) {
}
-void glStencilFunc(GLenum func, GLint ref, GLuint mask) {
+void glStencilFunc(GLenum func, GLint /*ref*/, GLuint /*mask*/) {
ogles_context_t* c = ogles_context_t::get();
if (func < GL_NEVER || func > GL_ALWAYS) {
ogles_error(c, GL_INVALID_ENUM);