2012-08-13 18:17:55 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "WebGLContext.h"
|
|
|
|
#include "WebGLExtensions.h"
|
2012-10-03 14:13:05 -07:00
|
|
|
#include "mozilla/dom/WebGLRenderingContextBinding.h"
|
2012-08-13 18:17:55 -07:00
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
2012-10-03 14:13:05 -07:00
|
|
|
WebGLExtensionDepthTexture::WebGLExtensionDepthTexture(WebGLContext* context)
|
|
|
|
: WebGLExtensionBase(context)
|
2012-08-13 18:17:55 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLExtensionDepthTexture::~WebGLExtensionDepthTexture()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-10-03 14:13:05 -07:00
|
|
|
IMPL_WEBGL_EXTENSION_GOOP(WebGLExtensionDepthTexture)
|