summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/service/gles2_cmd_decoder.h
diff options
context:
space:
mode:
authorzmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 00:33:29 +0000
committerzmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 00:33:29 +0000
commite82fb7928fb3d6c7b980f8fae4b948eb6bfb7ee9 (patch)
tree092bcf52246ec3ccc0f5dd517ce42a20c64124c9 /gpu/command_buffer/service/gles2_cmd_decoder.h
parent959a694093db706173cccfec4c1e14717ce370e1 (diff)
downloadchromium_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.h6
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;