summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/service/context_group.h
diff options
context:
space:
mode:
authorgman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-17 22:00:46 +0000
committergman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-17 22:00:46 +0000
commit9fcd39385ae39a68d3509238bd9ef83af1868fc7 (patch)
treef87d5e740dbe0b14341ff7a097dedeeaea250dc2 /gpu/command_buffer/service/context_group.h
parent9597ff6926070a4c3bf3649589568352cf870456 (diff)
downloadchromium_src-9fcd39385ae39a68d3509238bd9ef83af1868fc7.zip
chromium_src-9fcd39385ae39a68d3509238bd9ef83af1868fc7.tar.gz
chromium_src-9fcd39385ae39a68d3509238bd9ef83af1868fc7.tar.bz2
Enables GL_OES_standard_derivatives
Note: With this CL standard derivaties will unfortunately be accessable by WebGL. Another CL will be coming ASAP that fixes this. TEST=unit tests BUG=none Review URL: http://codereview.chromium.org/3446008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/service/context_group.h')
-rw-r--r--gpu/command_buffer/service/context_group.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gpu/command_buffer/service/context_group.h b/gpu/command_buffer/service/context_group.h
index 77b1c7a..e48cacd 100644
--- a/gpu/command_buffer/service/context_group.h
+++ b/gpu/command_buffer/service/context_group.h
@@ -32,10 +32,12 @@ class ContextGroup {
public:
struct ExtensionFlags {
ExtensionFlags()
- : ext_framebuffer_multisample(false) {
+ : ext_framebuffer_multisample(false),
+ oes_standard_derivatives(false) {
}
bool ext_framebuffer_multisample;
+ bool oes_standard_derivatives;
};
ContextGroup();