2012-02-23 05:43:57 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-02-23 05:43:57 -08:00
|
|
|
|
|
|
|
#include "WebGLExtensions.h"
|
2014-11-13 20:03:50 -08:00
|
|
|
|
2012-10-03 14:13:05 -07:00
|
|
|
#include "mozilla/dom/WebGLRenderingContextBinding.h"
|
2014-11-13 20:03:50 -08:00
|
|
|
#include "WebGLContext.h"
|
2012-02-23 05:43:57 -08:00
|
|
|
|
2014-11-13 20:03:50 -08:00
|
|
|
namespace mozilla {
|
2012-02-23 05:43:57 -08:00
|
|
|
|
2014-11-13 20:03:50 -08:00
|
|
|
WebGLExtensionTextureFilterAnisotropic::WebGLExtensionTextureFilterAnisotropic(WebGLContext* webgl)
|
|
|
|
: WebGLExtensionBase(webgl)
|
2012-02-23 05:43:57 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLExtensionTextureFilterAnisotropic::~WebGLExtensionTextureFilterAnisotropic()
|
|
|
|
{
|
|
|
|
}
|
2012-03-26 11:59:04 -07:00
|
|
|
|
2012-10-03 14:13:05 -07:00
|
|
|
IMPL_WEBGL_EXTENSION_GOOP(WebGLExtensionTextureFilterAnisotropic)
|
2014-11-13 20:03:50 -08:00
|
|
|
|
|
|
|
} // namespace mozilla
|