Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
[gecko.git] / dom / canvas / WebGLExtensionColorBufferFloat.cpp
blob381fc5e7730d724ac66c26464b5b510fe791b0e7
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #include "WebGLExtensions.h"
7 #include "GLContext.h"
8 #include "mozilla/dom/WebGLRenderingContextBinding.h"
9 #include "WebGLContext.h"
11 using namespace mozilla;
13 WebGLExtensionColorBufferFloat::WebGLExtensionColorBufferFloat(WebGLContext* context)
14 : WebGLExtensionBase(context)
16 MOZ_ASSERT(IsSupported(context));
19 WebGLExtensionColorBufferFloat::~WebGLExtensionColorBufferFloat()
23 bool
24 WebGLExtensionColorBufferFloat::IsSupported(const WebGLContext* context)
26 return context->GL()->IsSupported(gl::GLFeature::renderbuffer_color_float) &&
27 context->GL()->IsSupported(gl::GLFeature::frag_color_float);
30 IMPL_WEBGL_EXTENSION_GOOP(WebGLExtensionColorBufferFloat)