Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / dom / canvas / WebGLExtensionCompressedTextureETC1.cpp
blob232a74f09d42c1d14102db2a298f5adf673f920a
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 using namespace mozilla;
12 WebGLExtensionCompressedTextureETC1::WebGLExtensionCompressedTextureETC1(WebGLContext* context)
13 : WebGLExtensionBase(context)
15 context->mCompressedTextureFormats.AppendElement(LOCAL_GL_ETC1_RGB8_OES);
18 WebGLExtensionCompressedTextureETC1::~WebGLExtensionCompressedTextureETC1()
22 IMPL_WEBGL_EXTENSION_GOOP(WebGLExtensionCompressedTextureETC1)