From 1e02a62b7b88273b087c056af5d46896233a3e9d Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Thu, 26 Oct 2017 15:18:12 -0700 Subject: Use -Werror in frameworks/native/opengl/libagl * Remove unused local variables and functions. Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: Ib8e3ee6e3c1ee3cf1e26f265fc87890f1690c6a2 --- opengl/libagl/array.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'opengl/libagl/array.cpp') diff --git a/opengl/libagl/array.cpp b/opengl/libagl/array.cpp index 54207fa212..2d36c6194e 100644 --- a/opengl/libagl/array.cpp +++ b/opengl/libagl/array.cpp @@ -136,9 +136,6 @@ void ogles_uninit_array(ogles_context_t* c) static void currentColor(ogles_context_t* c, GLfixed* v, const GLvoid*) { memcpy(v, c->current.color.v, sizeof(vec4_t)); } -static void currentColor_clamp(ogles_context_t* c, GLfixed* v, const GLvoid*) { - memcpy(v, c->currentColorClamped.v, sizeof(vec4_t)); -} static void currentNormal(ogles_context_t* c, GLfixed* v, const GLvoid*) { memcpy(v, c->currentNormal.v, sizeof(vec3_t)); } @@ -349,6 +346,7 @@ void vertex_cache_t::init() { // make sure the size of vertex_t allows cache-line alignment CTA<(sizeof(vertex_t) & 0x1F) == 0> assertAlignedSize; + (void)assertAlignedSize; // suppress unused warning. const int align = 32; const size_t s = VERTEX_BUFFER_SIZE + VERTEX_CACHE_SIZE; -- cgit v1.2.3-59-g8ed1b