diff options
author | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 00:08:47 +0000 |
---|---|---|
committer | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 00:08:47 +0000 |
commit | 9c374dbfeb787d684ffcc397d5a7105eae67dce4 (patch) | |
tree | 81d9b2be907032fd7f898968bf5edaabe77869bc /gpu/command_buffer/service/texture_manager.cc | |
parent | 614b4a701aa26a3979f2b0f14ead01c3f3a49423 (diff) | |
download | chromium_src-9c374dbfeb787d684ffcc397d5a7105eae67dce4.zip chromium_src-9c374dbfeb787d684ffcc397d5a7105eae67dce4.tar.gz chromium_src-9c374dbfeb787d684ffcc397d5a7105eae67dce4.tar.bz2 |
Adds support for GL_EXT_texture_compression_s3tc,
GL_EXT_texture_filter_anisotropic,
GL_OES_packed_depth_stencil
GL_GOOGLE_depth_texture
TEST=unit tests and ran conformance tests
BUG=53262,53264,53266,53270
Review URL: http://codereview.chromium.org/3135048
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57428 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/service/texture_manager.cc')
-rw-r--r-- | gpu/command_buffer/service/texture_manager.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gpu/command_buffer/service/texture_manager.cc b/gpu/command_buffer/service/texture_manager.cc index 607938e..66a8d55 100644 --- a/gpu/command_buffer/service/texture_manager.cc +++ b/gpu/command_buffer/service/texture_manager.cc @@ -268,6 +268,9 @@ void TextureManager::TextureInfo::SetParameter( case GL_TEXTURE_WRAP_T: wrap_t_ = param; break; + case GL_TEXTURE_MAX_ANISOTROPY_EXT: + // Nothing to do for this case at the moment. + break; default: NOTREACHED(); break; |