1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 "GLContext.h"
#include "WebGL2Context.h"
#include "WebGLSampler.h"
namespace mozilla {
RefPtr<WebGLSampler> WebGL2Context::CreateSampler() {
const FuncScope funcScope(*this, "createSampler");
if (IsContextLost()) return nullptr;
return new WebGLSampler(this);
}
void WebGL2Context::BindSampler(GLuint unit, WebGLSampler* sampler) {
FuncScope funcScope(*this, "bindSampler");
if (IsContextLost()) return;
funcScope.mBindFailureGuard = true;
if (sampler && !ValidateObject("sampler", *sampler)) return;
if (unit >= mBoundSamplers.Length())
return ErrorInvalidValue("unit must be < %u", mBoundSamplers.Length());
////
gl->fBindSampler(unit, sampler ? sampler->mGLName : 0);
mBoundSamplers[unit] = sampler;
funcScope.mBindFailureGuard = false;
}
void WebGL2Context::SamplerParameteri(WebGLSampler& sampler, GLenum pname,
GLint param) {
const FuncScope funcScope(*this, "samplerParameteri");
if (IsContextLost()) return;
if (!ValidateObject("sampler", sampler)) return;
sampler.SamplerParameter(pname, FloatOrInt(param));
}
void WebGL2Context::SamplerParameterf(WebGLSampler& sampler, GLenum pname,
GLfloat param) {
const FuncScope funcScope(*this, "samplerParameterf");
if (IsContextLost()) return;
if (!ValidateObject("sampler", sampler)) return;
sampler.SamplerParameter(pname, FloatOrInt(param));
}
Maybe<double> WebGL2Context::GetSamplerParameter(const WebGLSampler& sampler,
GLenum pname) const {
const FuncScope funcScope(*this, "getSamplerParameter");
if (IsContextLost()) return {};
if (!ValidateObject("sampler", sampler)) return {};
////
const auto fnAsFloat = [&]() {
GLfloat param = 0;
gl->fGetSamplerParameterfv(sampler.mGLName, pname, ¶m);
return param;
};
switch (pname) {
case LOCAL_GL_TEXTURE_MIN_FILTER:
case LOCAL_GL_TEXTURE_MAG_FILTER:
case LOCAL_GL_TEXTURE_WRAP_S:
case LOCAL_GL_TEXTURE_WRAP_T:
case LOCAL_GL_TEXTURE_WRAP_R:
case LOCAL_GL_TEXTURE_COMPARE_MODE:
case LOCAL_GL_TEXTURE_COMPARE_FUNC: {
GLint param = 0;
gl->fGetSamplerParameteriv(sampler.mGLName, pname, ¶m);
return Some(param);
}
case LOCAL_GL_TEXTURE_MIN_LOD:
case LOCAL_GL_TEXTURE_MAX_LOD:
return Some(fnAsFloat());
case LOCAL_GL_TEXTURE_MAX_ANISOTROPY:
if (!IsExtensionEnabled(
WebGLExtensionID::EXT_texture_filter_anisotropic)) {
break;
}
return Some(fnAsFloat());
default:
break;
}
ErrorInvalidEnumInfo("pname", pname);
return {};
}
} // namespace mozilla
|