Bumping manifests a=b2g-bump
[gecko.git] / dom / canvas / WebGLExtensionCompressedTextureATC.cpp
blobbdc39339988cf1146b8597763462bdf9d541963a
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 "mozilla/dom/WebGLRenderingContextBinding.h"
8 #include "WebGLContext.h"
10 namespace mozilla {
12 WebGLExtensionCompressedTextureATC::WebGLExtensionCompressedTextureATC(WebGLContext* webgl)
13 : WebGLExtensionBase(webgl)
15 webgl->mCompressedTextureFormats.AppendElement(LOCAL_GL_ATC_RGB);
16 webgl->mCompressedTextureFormats.AppendElement(LOCAL_GL_ATC_RGBA_EXPLICIT_ALPHA);
17 webgl->mCompressedTextureFormats.AppendElement(LOCAL_GL_ATC_RGBA_INTERPOLATED_ALPHA);
20 WebGLExtensionCompressedTextureATC::~WebGLExtensionCompressedTextureATC()
24 IMPL_WEBGL_EXTENSION_GOOP(WebGLExtensionCompressedTextureATC)
26 } // namespace mozilla