diff options
author | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-22 00:33:29 +0000 |
---|---|---|
committer | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-22 00:33:29 +0000 |
commit | e82fb7928fb3d6c7b980f8fae4b948eb6bfb7ee9 (patch) | |
tree | 092bcf52246ec3ccc0f5dd517ce42a20c64124c9 /gpu/command_buffer/service/gles2_cmd_decoder.h | |
parent | 959a694093db706173cccfec4c1e14717ce370e1 (diff) | |
download | chromium_src-e82fb7928fb3d6c7b980f8fae4b948eb6bfb7ee9.zip chromium_src-e82fb7928fb3d6c7b980f8fae4b948eb6bfb7ee9.tar.gz chromium_src-e82fb7928fb3d6c7b980f8fae4b948eb6bfb7ee9.tar.bz2 |
Code cleanup: rename DisallowedExtensions to DisallowedFeature.
BUG=none
TEST=bots green
Review URL: http://codereview.chromium.org/7979031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102213 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/service/gles2_cmd_decoder.h')
-rw-r--r-- | gpu/command_buffer/service/gles2_cmd_decoder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.h b/gpu/command_buffer/service/gles2_cmd_decoder.h index 0d83c23..00fff76 100644 --- a/gpu/command_buffer/service/gles2_cmd_decoder.h +++ b/gpu/command_buffer/service/gles2_cmd_decoder.h @@ -29,8 +29,8 @@ namespace gles2 { class ContextGroup; class GLES2Util; -struct DisallowedExtensions { - DisallowedExtensions() +struct DisallowedFeatures { + DisallowedFeatures() : multisampling(false), driver_bug_workarounds(false) { } @@ -73,7 +73,7 @@ class GLES2Decoder : public CommonDecoder { virtual bool Initialize(const scoped_refptr<gfx::GLSurface>& surface, const scoped_refptr<gfx::GLContext>& context, const gfx::Size& size, - const DisallowedExtensions& disallowed_extensions, + const DisallowedFeatures& disallowed_features, const char* allowed_extensions, const std::vector<int32>& attribs) = 0; |