blob: 042a7c7de59a76d0c3b5093bb0b65ca3108d1bfc [file] [log] [blame]
Alexis Hetu5174c572018-11-19 11:30:43 -05001// Copyright 2018 The SwiftShader Authors. All Rights Reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#ifndef VK_SAMPLER_HPP_
16#define VK_SAMPLER_HPP_
17
18#include "VkDevice.hpp"
Nicolas Capens6b63c802019-05-16 11:10:34 -040019#include "VkImageView.hpp" // For ResolveIdentityMapping()
Nicolas Capens97da7822019-04-30 17:33:26 -040020#include "Device/Config.hpp"
21#include "System/Math.hpp"
Alexis Hetu5174c572018-11-19 11:30:43 -050022
Ben Claytoneac32c42019-04-26 11:25:57 +010023#include <atomic>
24
Nicolas Capens157ba262019-12-10 17:49:14 -050025namespace vk {
Alexis Hetu5174c572018-11-19 11:30:43 -050026
27class Sampler : public Object<Sampler, VkSampler>
28{
29public:
Nicolas Capens6b63c802019-05-16 11:10:34 -040030 Sampler(const VkSamplerCreateInfo* pCreateInfo, void* mem, const vk::SamplerYcbcrConversion *ycbcrConversion) :
Alexis Hetu5174c572018-11-19 11:30:43 -050031 magFilter(pCreateInfo->magFilter),
32 minFilter(pCreateInfo->minFilter),
33 mipmapMode(pCreateInfo->mipmapMode),
34 addressModeU(pCreateInfo->addressModeU),
35 addressModeV(pCreateInfo->addressModeV),
36 addressModeW(pCreateInfo->addressModeW),
37 mipLodBias(pCreateInfo->mipLodBias),
38 anisotropyEnable(pCreateInfo->anisotropyEnable),
39 maxAnisotropy(pCreateInfo->maxAnisotropy),
40 compareEnable(pCreateInfo->compareEnable),
41 compareOp(pCreateInfo->compareOp),
Nicolas Capens97da7822019-04-30 17:33:26 -040042 minLod(ClampLod(pCreateInfo->minLod)),
43 maxLod(ClampLod(pCreateInfo->maxLod)),
Alexis Hetu5174c572018-11-19 11:30:43 -050044 borderColor(pCreateInfo->borderColor),
Nicolas Capens6b63c802019-05-16 11:10:34 -040045 unnormalizedCoordinates(pCreateInfo->unnormalizedCoordinates),
46 ycbcrConversion(ycbcrConversion)
Alexis Hetu5174c572018-11-19 11:30:43 -050047 {
48 }
49
Alexis Hetu5174c572018-11-19 11:30:43 -050050 static size_t ComputeRequiredAllocationSize(const VkSamplerCreateInfo* pCreateInfo)
51 {
52 return 0;
53 }
54
Nicolas Capens97da7822019-04-30 17:33:26 -040055 // Prevents accessing mipmap levels out of range.
56 static float ClampLod(float lod)
57 {
58 return sw::clamp(lod, 0.0f, (float)(sw::MAX_TEXTURE_LOD));
59 }
60
Ben Claytoneac32c42019-04-26 11:25:57 +010061 const uint32_t id = nextID++;
Nicolas Capens7d867272019-04-08 22:51:08 -040062 const VkFilter magFilter = VK_FILTER_NEAREST;
63 const VkFilter minFilter = VK_FILTER_NEAREST;
64 const VkSamplerMipmapMode mipmapMode = VK_SAMPLER_MIPMAP_MODE_NEAREST;
65 const VkSamplerAddressMode addressModeU = VK_SAMPLER_ADDRESS_MODE_REPEAT;
66 const VkSamplerAddressMode addressModeV = VK_SAMPLER_ADDRESS_MODE_REPEAT;
67 const VkSamplerAddressMode addressModeW = VK_SAMPLER_ADDRESS_MODE_REPEAT;
68 const float mipLodBias = 0.0f;
69 const VkBool32 anisotropyEnable = VK_FALSE;
70 const float maxAnisotropy = 0.0f;
71 const VkBool32 compareEnable = VK_FALSE;
72 const VkCompareOp compareOp = VK_COMPARE_OP_NEVER;
73 const float minLod = 0.0f;
74 const float maxLod = 0.0f;
75 const VkBorderColor borderColor = VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK;
76 const VkBool32 unnormalizedCoordinates = VK_FALSE;
Ben Claytoneac32c42019-04-26 11:25:57 +010077
Nicolas Capens6b63c802019-05-16 11:10:34 -040078 const vk::SamplerYcbcrConversion *ycbcrConversion = nullptr;
79
Ben Claytoneac32c42019-04-26 11:25:57 +010080private:
81 static std::atomic<uint32_t> nextID;
Alexis Hetu5174c572018-11-19 11:30:43 -050082};
83
Nicolas Capens6b63c802019-05-16 11:10:34 -040084class SamplerYcbcrConversion : public Object<SamplerYcbcrConversion, VkSamplerYcbcrConversion>
85{
86public:
87 SamplerYcbcrConversion(const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, void* mem) :
88 format(pCreateInfo->format),
89 ycbcrModel(pCreateInfo->ycbcrModel),
90 ycbcrRange(pCreateInfo->ycbcrRange),
91 components(ResolveIdentityMapping(pCreateInfo->components)),
92 xChromaOffset(pCreateInfo->xChromaOffset),
93 yChromaOffset(pCreateInfo->yChromaOffset),
94 chromaFilter(pCreateInfo->chromaFilter),
95 forceExplicitReconstruction(pCreateInfo->forceExplicitReconstruction)
96 {
97 }
98
99 ~SamplerYcbcrConversion() = default;
100
101 static size_t ComputeRequiredAllocationSize(const VkSamplerYcbcrConversionCreateInfo* pCreateInfo)
102 {
103 return 0;
104 }
105
106 const VkFormat format = VK_FORMAT_UNDEFINED;
107 const VkSamplerYcbcrModelConversion ycbcrModel = VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY;
108 const VkSamplerYcbcrRange ycbcrRange = VK_SAMPLER_YCBCR_RANGE_ITU_FULL;
109 const VkComponentMapping components = {VK_COMPONENT_SWIZZLE_R, VK_COMPONENT_SWIZZLE_G, VK_COMPONENT_SWIZZLE_B, VK_COMPONENT_SWIZZLE_A};
110 const VkChromaLocation xChromaOffset = VK_CHROMA_LOCATION_COSITED_EVEN;
111 const VkChromaLocation yChromaOffset = VK_CHROMA_LOCATION_COSITED_EVEN;
112 const VkFilter chromaFilter = VK_FILTER_NEAREST;
113 const VkBool32 forceExplicitReconstruction = VK_FALSE;
114};
115
Alexis Hetu5174c572018-11-19 11:30:43 -0500116static inline Sampler* Cast(VkSampler object)
117{
Alexis Hetubd4cf812019-06-14 15:14:07 -0400118 return Sampler::Cast(object);
Alexis Hetu5174c572018-11-19 11:30:43 -0500119}
120
Nicolas Capens6b63c802019-05-16 11:10:34 -0400121static inline SamplerYcbcrConversion* Cast(VkSamplerYcbcrConversion object)
122{
Alexis Hetubd4cf812019-06-14 15:14:07 -0400123 return SamplerYcbcrConversion::Cast(object);
Nicolas Capens6b63c802019-05-16 11:10:34 -0400124}
125
Nicolas Capens157ba262019-12-10 17:49:14 -0500126} // namespace vk
Alexis Hetu5174c572018-11-19 11:30:43 -0500127
128#endif // VK_SAMPLER_HPP_