2017-04-20 18:38:20 +00:00
|
|
|
// Copyright 2017 The NXT 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.
|
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#include "backend/Sampler.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#include "backend/Device.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
namespace backend {
|
|
|
|
|
|
|
|
// SamplerBase
|
|
|
|
|
2017-07-07 18:39:38 +00:00
|
|
|
SamplerBase::SamplerBase(SamplerBuilder*) {
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SamplerBuilder
|
|
|
|
|
|
|
|
enum SamplerSetProperties {
|
|
|
|
SAMPLER_PROPERTY_FILTER = 0x1,
|
|
|
|
};
|
2017-05-08 08:52:11 +00:00
|
|
|
SamplerBuilder::SamplerBuilder(DeviceBase* device) : Builder(device) {
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nxt::FilterMode SamplerBuilder::GetMagFilter() const {
|
|
|
|
return magFilter;
|
|
|
|
}
|
|
|
|
|
|
|
|
nxt::FilterMode SamplerBuilder::GetMinFilter() const {
|
|
|
|
return minFilter;
|
|
|
|
}
|
|
|
|
|
|
|
|
nxt::FilterMode SamplerBuilder::GetMipMapFilter() const {
|
|
|
|
return mipMapFilter;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SamplerBuilder::SetFilterMode(nxt::FilterMode magFilter, nxt::FilterMode minFilter, nxt::FilterMode mipMapFilter) {
|
|
|
|
if ((propertiesSet & SAMPLER_PROPERTY_FILTER) != 0) {
|
2017-05-08 08:52:11 +00:00
|
|
|
HandleError("Sampler filter property set multiple times");
|
2017-04-20 18:38:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->magFilter = magFilter;
|
|
|
|
this->minFilter = minFilter;
|
|
|
|
this->mipMapFilter = mipMapFilter;
|
|
|
|
propertiesSet |= SAMPLER_PROPERTY_FILTER;
|
|
|
|
}
|
2017-05-08 13:17:44 +00:00
|
|
|
|
|
|
|
SamplerBase* SamplerBuilder::GetResultImpl() {
|
|
|
|
return device->CreateSampler(this);
|
|
|
|
}
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|