mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-21 22:13:45 +00:00
This is to match the name in the WeBGPU IDL. BUG=dawn:22 Change-Id: I0a4a7b62afa30cfd699d90efb2dd0c085778883b Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8624 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Yunchao He <yunchao.he@intel.com>
102 lines
3.9 KiB
C++
102 lines
3.9 KiB
C++
// Copyright 2017 The Dawn Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "dawn_native/opengl/SamplerGL.h"
|
|
|
|
#include "common/Assert.h"
|
|
#include "dawn_native/opengl/DeviceGL.h"
|
|
#include "dawn_native/opengl/UtilsGL.h"
|
|
|
|
namespace dawn_native { namespace opengl {
|
|
|
|
namespace {
|
|
GLenum MagFilterMode(dawn::FilterMode filter) {
|
|
switch (filter) {
|
|
case dawn::FilterMode::Nearest:
|
|
return GL_NEAREST;
|
|
case dawn::FilterMode::Linear:
|
|
return GL_LINEAR;
|
|
default:
|
|
UNREACHABLE();
|
|
}
|
|
}
|
|
|
|
GLenum MinFilterMode(dawn::FilterMode minFilter, dawn::FilterMode mipMapFilter) {
|
|
switch (minFilter) {
|
|
case dawn::FilterMode::Nearest:
|
|
switch (mipMapFilter) {
|
|
case dawn::FilterMode::Nearest:
|
|
return GL_NEAREST_MIPMAP_NEAREST;
|
|
case dawn::FilterMode::Linear:
|
|
return GL_NEAREST_MIPMAP_LINEAR;
|
|
default:
|
|
UNREACHABLE();
|
|
}
|
|
case dawn::FilterMode::Linear:
|
|
switch (mipMapFilter) {
|
|
case dawn::FilterMode::Nearest:
|
|
return GL_LINEAR_MIPMAP_NEAREST;
|
|
case dawn::FilterMode::Linear:
|
|
return GL_LINEAR_MIPMAP_LINEAR;
|
|
default:
|
|
UNREACHABLE();
|
|
}
|
|
default:
|
|
UNREACHABLE();
|
|
}
|
|
}
|
|
|
|
GLenum WrapMode(dawn::AddressMode mode) {
|
|
switch (mode) {
|
|
case dawn::AddressMode::Repeat:
|
|
return GL_REPEAT;
|
|
case dawn::AddressMode::MirrorRepeat:
|
|
return GL_MIRRORED_REPEAT;
|
|
case dawn::AddressMode::ClampToEdge:
|
|
return GL_CLAMP_TO_EDGE;
|
|
default:
|
|
UNREACHABLE();
|
|
}
|
|
}
|
|
|
|
} // namespace
|
|
|
|
Sampler::Sampler(Device* device, const SamplerDescriptor* descriptor)
|
|
: SamplerBase(device, descriptor) {
|
|
const OpenGLFunctions& gl = ToBackend(GetDevice())->gl;
|
|
|
|
gl.GenSamplers(1, &mHandle);
|
|
gl.SamplerParameteri(mHandle, GL_TEXTURE_MAG_FILTER, MagFilterMode(descriptor->magFilter));
|
|
gl.SamplerParameteri(mHandle, GL_TEXTURE_MIN_FILTER,
|
|
MinFilterMode(descriptor->minFilter, descriptor->mipmapFilter));
|
|
gl.SamplerParameteri(mHandle, GL_TEXTURE_WRAP_R, WrapMode(descriptor->addressModeW));
|
|
gl.SamplerParameteri(mHandle, GL_TEXTURE_WRAP_S, WrapMode(descriptor->addressModeU));
|
|
gl.SamplerParameteri(mHandle, GL_TEXTURE_WRAP_T, WrapMode(descriptor->addressModeV));
|
|
|
|
gl.SamplerParameterf(mHandle, GL_TEXTURE_MIN_LOD, descriptor->lodMinClamp);
|
|
gl.SamplerParameterf(mHandle, GL_TEXTURE_MAX_LOD, descriptor->lodMaxClamp);
|
|
|
|
if (ToOpenGLCompareFunction(descriptor->compare) != GL_NEVER) {
|
|
gl.SamplerParameteri(mHandle, GL_TEXTURE_COMPARE_MODE, GL_COMPARE_REF_TO_TEXTURE);
|
|
gl.SamplerParameteri(mHandle, GL_TEXTURE_COMPARE_FUNC,
|
|
ToOpenGLCompareFunction(descriptor->compare));
|
|
}
|
|
}
|
|
|
|
GLuint Sampler::GetHandle() const {
|
|
return mHandle;
|
|
}
|
|
|
|
}} // namespace dawn_native::opengl
|