diff options
| author | 2014-03-13 23:12:09 +0000 | |
|---|---|---|
| committer | 2014-03-13 23:12:09 +0000 | |
| commit | 993146092f8205d9747f082ccd63c09b536caa4e (patch) | |
| tree | 89d07eb2647268606632e10e6c9add64b30f7b84 /opengl/libagl/state.cpp | |
| parent | 49bfda1fbdf828a8ea63ae2c2fa25739f6e48527 (diff) | |
| parent | d4dabf872ac0a12e12aebae9032f7d62762c2aeb (diff) | |
am d4dabf87: am cdbf28b3: Merge "native frameworks: 64-bit compile issues"
* commit 'd4dabf872ac0a12e12aebae9032f7d62762c2aeb':
native frameworks: 64-bit compile issues
Diffstat (limited to 'opengl/libagl/state.cpp')
| -rw-r--r-- | opengl/libagl/state.cpp | 6 |
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); |