mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
/* 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 "WebGLExtensions.h"
|
|
|
|
#include "GLContext.h"
|
|
#include "mozilla/dom/WebGLRenderingContextBinding.h"
|
|
#include "WebGLContext.h"
|
|
|
|
namespace mozilla {
|
|
|
|
WebGLExtensionColorBufferHalfFloat::WebGLExtensionColorBufferHalfFloat(WebGLContext* webgl)
|
|
: WebGLExtensionBase(webgl)
|
|
{
|
|
MOZ_ASSERT(IsSupported(webgl), "Don't construct extension if unsupported.");
|
|
}
|
|
|
|
WebGLExtensionColorBufferHalfFloat::~WebGLExtensionColorBufferHalfFloat()
|
|
{
|
|
}
|
|
|
|
bool
|
|
WebGLExtensionColorBufferHalfFloat::IsSupported(const WebGLContext* webgl)
|
|
{
|
|
gl::GLContext* gl = webgl->GL();
|
|
|
|
// ANGLE doesn't support ReadPixels from a RGBA16F with RGBA/FLOAT.
|
|
return gl->IsSupported(gl::GLFeature::renderbuffer_color_half_float) ||
|
|
gl->IsANGLE();
|
|
}
|
|
|
|
IMPL_WEBGL_EXTENSION_GOOP(WebGLExtensionColorBufferHalfFloat)
|
|
|
|
} // namespace mozilla
|