2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2017 The Dawn Authors
|
2017-06-16 18:26:26 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/d3d12/SamplerD3D12.h"
|
2017-06-16 18:26:26 +00:00
|
|
|
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/d3d12/DeviceD3D12.h"
|
2019-01-04 04:56:08 +00:00
|
|
|
#include "dawn_native/d3d12/UtilsD3D12.h"
|
2017-06-16 18:26:26 +00:00
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
namespace dawn_native { namespace d3d12 {
|
2017-06-16 18:26:26 +00:00
|
|
|
|
2018-03-29 18:02:52 +00:00
|
|
|
namespace {
|
2019-10-23 11:57:41 +00:00
|
|
|
D3D12_TEXTURE_ADDRESS_MODE AddressMode(wgpu::AddressMode mode) {
|
2018-03-29 18:02:52 +00:00
|
|
|
switch (mode) {
|
2019-10-23 11:57:41 +00:00
|
|
|
case wgpu::AddressMode::Repeat:
|
2018-03-29 18:02:52 +00:00
|
|
|
return D3D12_TEXTURE_ADDRESS_MODE_WRAP;
|
2019-10-23 11:57:41 +00:00
|
|
|
case wgpu::AddressMode::MirrorRepeat:
|
2018-03-29 18:02:52 +00:00
|
|
|
return D3D12_TEXTURE_ADDRESS_MODE_MIRROR;
|
2019-10-23 11:57:41 +00:00
|
|
|
case wgpu::AddressMode::ClampToEdge:
|
2018-03-29 18:02:52 +00:00
|
|
|
return D3D12_TEXTURE_ADDRESS_MODE_CLAMP;
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2018-07-25 15:03:23 +00:00
|
|
|
Sampler::Sampler(Device* device, const SamplerDescriptor* descriptor)
|
2018-05-17 21:09:07 +00:00
|
|
|
: SamplerBase(device, descriptor) {
|
2017-06-16 18:26:26 +00:00
|
|
|
// https://msdn.microsoft.com/en-us/library/windows/desktop/dn770367(v=vs.85).aspx
|
2017-11-24 19:04:22 +00:00
|
|
|
// hex value, decimal value, min linear, mag linear, mip linear
|
|
|
|
// D3D12_FILTER_MIN_MAG_MIP_POINT = 0 0 0 0 0
|
2017-06-16 18:26:26 +00:00
|
|
|
// D3D12_FILTER_MIN_MAG_POINT_MIP_LINEAR = 0x1 1 0 0 1
|
|
|
|
// D3D12_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT = 0x4 4 0 1 0
|
|
|
|
// D3D12_FILTER_MIN_POINT_MAG_MIP_LINEAR = 0x5 5 0 1 1
|
|
|
|
// D3D12_FILTER_MIN_LINEAR_MAG_MIP_POINT = 0x10 16 1 0 0
|
|
|
|
// D3D12_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR = 0x11 17 1 0 1
|
|
|
|
// D3D12_FILTER_MIN_MAG_LINEAR_MIP_POINT = 0x14 20 1 1 0
|
|
|
|
// D3D12_FILTER_MIN_MAG_MIP_LINEAR = 0x15 21 1 1 1
|
|
|
|
|
|
|
|
// if mip mode is linear, add 1
|
|
|
|
// if mag mode is linear, add 4
|
|
|
|
// if min mode is linear, add 16
|
|
|
|
|
|
|
|
uint8_t mode = 0;
|
|
|
|
|
2018-05-17 21:09:07 +00:00
|
|
|
switch (descriptor->minFilter) {
|
2019-10-23 11:57:41 +00:00
|
|
|
case wgpu::FilterMode::Nearest:
|
2017-06-16 18:26:26 +00:00
|
|
|
break;
|
2019-10-23 11:57:41 +00:00
|
|
|
case wgpu::FilterMode::Linear:
|
2017-06-16 18:26:26 +00:00
|
|
|
mode += 16;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-05-17 21:09:07 +00:00
|
|
|
switch (descriptor->magFilter) {
|
2019-10-23 11:57:41 +00:00
|
|
|
case wgpu::FilterMode::Nearest:
|
2017-06-16 18:26:26 +00:00
|
|
|
break;
|
2019-10-23 11:57:41 +00:00
|
|
|
case wgpu::FilterMode::Linear:
|
2017-06-16 18:26:26 +00:00
|
|
|
mode += 4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-05-17 21:09:07 +00:00
|
|
|
switch (descriptor->mipmapFilter) {
|
2019-10-23 11:57:41 +00:00
|
|
|
case wgpu::FilterMode::Nearest:
|
2017-06-16 18:26:26 +00:00
|
|
|
break;
|
2019-10-23 11:57:41 +00:00
|
|
|
case wgpu::FilterMode::Linear:
|
2017-06-16 18:26:26 +00:00
|
|
|
mode += 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-11-23 19:14:03 +00:00
|
|
|
mSamplerDesc.Filter = static_cast<D3D12_FILTER>(mode);
|
2018-05-17 21:09:07 +00:00
|
|
|
mSamplerDesc.AddressU = AddressMode(descriptor->addressModeU);
|
|
|
|
mSamplerDesc.AddressV = AddressMode(descriptor->addressModeV);
|
|
|
|
mSamplerDesc.AddressW = AddressMode(descriptor->addressModeW);
|
2017-11-23 19:14:03 +00:00
|
|
|
mSamplerDesc.MipLODBias = 0.f;
|
|
|
|
mSamplerDesc.MaxAnisotropy = 1;
|
2019-07-08 08:29:57 +00:00
|
|
|
mSamplerDesc.ComparisonFunc = ToD3D12ComparisonFunc(descriptor->compare);
|
2019-01-04 04:56:08 +00:00
|
|
|
mSamplerDesc.MinLOD = descriptor->lodMinClamp;
|
|
|
|
mSamplerDesc.MaxLOD = descriptor->lodMaxClamp;
|
2017-06-16 18:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const D3D12_SAMPLER_DESC& Sampler::GetSamplerDescriptor() const {
|
2017-11-23 19:14:03 +00:00
|
|
|
return mSamplerDesc;
|
2017-06-16 18:26:26 +00:00
|
|
|
}
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
}} // namespace dawn_native::d3d12
|