diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-03 23:26:22 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-03 23:26:22 +0000 |
commit | f9b0ea5e6108f356011d2b38a64960ecc36c2259 (patch) | |
tree | 44f8d14ca0d9cd528ce411ebaae608746cebf015 /media/tools | |
parent | 50388640382f805efb3d8411e50d7d08526d169d (diff) | |
download | chromium_src-f9b0ea5e6108f356011d2b38a64960ecc36c2259.zip chromium_src-f9b0ea5e6108f356011d2b38a64960ecc36c2259.tar.gz chromium_src-f9b0ea5e6108f356011d2b38a64960ecc36c2259.tar.bz2 |
Clean up unused constant globals
Found by clang's new -Wunused-const-variable.
BUG=290204
TBR=mark, acolwell, agl, alexeypa, markus, brettw
Review URL: https://codereview.chromium.org/25849004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/tools')
-rw-r--r-- | media/tools/player_x11/gl_video_renderer.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/media/tools/player_x11/gl_video_renderer.cc b/media/tools/player_x11/gl_video_renderer.cc index 9e50808..8d7c94f 100644 --- a/media/tools/player_x11/gl_video_renderer.cc +++ b/media/tools/player_x11/gl_video_renderer.cc @@ -67,14 +67,6 @@ static const float kVertices[8] = { 1.f, -1.f, }; -// Texture Coordinates mapping the entire texture. -static const float kTextureCoords[8] = { - 0, 0, - 0, 1, - 1, 0, - 1, 1, -}; - // Pass-through vertex shader. static const char kVertexShader[] = "varying vec2 interp_tc;\n" |