blob: 9027f6881557467384dd261df228250553a464ee [file] [log] [blame]
Greg Daniel164a9f02016-02-22 09:56:40 -05001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrVkCaps.h"
9
10#include "GrVkUtil.h"
11#include "glsl/GrGLSLCaps.h"
12#include "vk/GrVkInterface.h"
jvanverthfd7bd452016-03-25 06:29:52 -070013#include "vk/GrVkBackendContext.h"
Greg Daniel164a9f02016-02-22 09:56:40 -050014
15GrVkCaps::GrVkCaps(const GrContextOptions& contextOptions, const GrVkInterface* vkInterface,
egdanielc5ec1402016-03-28 12:14:42 -070016 VkPhysicalDevice physDev, uint32_t featureFlags, uint32_t extensionFlags)
17 : INHERITED(contextOptions) {
18 fCanUseGLSLForShaderModule = false;
19
Greg Daniel164a9f02016-02-22 09:56:40 -050020 /**************************************************************************
21 * GrDrawTargetCaps fields
22 **************************************************************************/
jvanverth62340062016-04-26 08:01:44 -070023 fMipMapSupport = true; // always available in Vulkan
brianosmanf05ab1b2016-05-12 11:01:10 -070024 fSRGBSupport = true; // always available in Vulkan
brianosman88791862016-05-23 10:15:27 -070025 fNPOTTextureTileSupport = true; // always available in Vulkan
jvanverthc8ef0532016-05-03 10:45:48 -070026 fTwoSidedStencilSupport = true; // always available in Vulkan
egdaniel50134cc2016-05-23 12:34:38 -070027 fStencilWrapOpsSupport = true; // always available in Vulkan
egdaniel37535c92016-06-30 08:23:30 -070028 fDiscardRenderTargetSupport = true;
Greg Daniel164a9f02016-02-22 09:56:40 -050029 fReuseScratchTextures = true; //TODO: figure this out
30 fGpuTracingSupport = false; //TODO: figure this out
31 fCompressedTexSubImageSupport = false; //TODO: figure this out
32 fOversizedStencilSupport = false; //TODO: figure this out
33
egdaniel9cb63402016-06-23 08:37:05 -070034 fUseDrawInsteadOfClear = false;
Greg Daniel164a9f02016-02-22 09:56:40 -050035
36 fMapBufferFlags = kNone_MapFlags; //TODO: figure this out
cdalton397536c2016-03-25 12:15:03 -070037 fBufferMapThreshold = SK_MaxS32; //TODO: figure this out
Greg Daniel164a9f02016-02-22 09:56:40 -050038
39 fMaxRenderTargetSize = 4096; // minimum required by spec
40 fMaxTextureSize = 4096; // minimum required by spec
41 fMaxColorSampleCount = 4; // minimum required by spec
42 fMaxStencilSampleCount = 4; // minimum required by spec
43
Greg Daniel164a9f02016-02-22 09:56:40 -050044 fShaderCaps.reset(new GrGLSLCaps(contextOptions));
45
egdanielc5ec1402016-03-28 12:14:42 -070046 this->init(contextOptions, vkInterface, physDev, featureFlags, extensionFlags);
Greg Daniel164a9f02016-02-22 09:56:40 -050047}
48
49void GrVkCaps::init(const GrContextOptions& contextOptions, const GrVkInterface* vkInterface,
egdanielc5ec1402016-03-28 12:14:42 -070050 VkPhysicalDevice physDev, uint32_t featureFlags, uint32_t extensionFlags) {
Greg Daniel164a9f02016-02-22 09:56:40 -050051
egdanield5e3b9e2016-03-08 12:19:54 -080052 VkPhysicalDeviceProperties properties;
53 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties(physDev, &properties));
54
egdanield5e3b9e2016-03-08 12:19:54 -080055 VkPhysicalDeviceMemoryProperties memoryProperties;
56 GR_VK_CALL(vkInterface, GetPhysicalDeviceMemoryProperties(physDev, &memoryProperties));
57
jvanverthfd7bd452016-03-25 06:29:52 -070058 this->initGrCaps(properties, memoryProperties, featureFlags);
59 this->initGLSLCaps(properties, featureFlags);
egdaniel8f1dcaa2016-04-01 10:10:45 -070060 this->initConfigTable(vkInterface, physDev);
61 this->initStencilFormat(vkInterface, physDev);
Greg Daniel164a9f02016-02-22 09:56:40 -050062
egdanielc5ec1402016-03-28 12:14:42 -070063 if (SkToBool(extensionFlags & kNV_glsl_shader_GrVkExtensionFlag)) {
egdanield632bb42016-03-30 12:06:48 -070064 // Currently disabling this feature since it does not play well with validation layers which
65 // expect a SPIR-V shader
66 // fCanUseGLSLForShaderModule = true;
egdanielc5ec1402016-03-28 12:14:42 -070067 }
Greg Daniel164a9f02016-02-22 09:56:40 -050068
69 this->applyOptionsOverrides(contextOptions);
egdanielc5ec1402016-03-28 12:14:42 -070070 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
71 glslCaps->applyOptionsOverrides(contextOptions);
Greg Daniel164a9f02016-02-22 09:56:40 -050072}
73
74int get_max_sample_count(VkSampleCountFlags flags) {
75 SkASSERT(flags & VK_SAMPLE_COUNT_1_BIT);
76 if (!(flags & VK_SAMPLE_COUNT_2_BIT)) {
77 return 0;
78 }
79 if (!(flags & VK_SAMPLE_COUNT_4_BIT)) {
80 return 2;
81 }
82 if (!(flags & VK_SAMPLE_COUNT_8_BIT)) {
83 return 4;
84 }
85 if (!(flags & VK_SAMPLE_COUNT_16_BIT)) {
86 return 8;
87 }
88 if (!(flags & VK_SAMPLE_COUNT_32_BIT)) {
89 return 16;
90 }
91 if (!(flags & VK_SAMPLE_COUNT_64_BIT)) {
92 return 32;
93 }
94 return 64;
95}
96
97void GrVkCaps::initSampleCount(const VkPhysicalDeviceProperties& properties) {
98 VkSampleCountFlags colorSamples = properties.limits.framebufferColorSampleCounts;
99 VkSampleCountFlags stencilSamples = properties.limits.framebufferStencilSampleCounts;
100
101 fMaxColorSampleCount = get_max_sample_count(colorSamples);
102 fMaxStencilSampleCount = get_max_sample_count(stencilSamples);
103}
104
egdanield5e3b9e2016-03-08 12:19:54 -0800105void GrVkCaps::initGrCaps(const VkPhysicalDeviceProperties& properties,
jvanverthfd7bd452016-03-25 06:29:52 -0700106 const VkPhysicalDeviceMemoryProperties& memoryProperties,
107 uint32_t featureFlags) {
bsalomon7dbd45d2016-03-23 10:40:53 -0700108 fMaxVertexAttributes = properties.limits.maxVertexInputAttributes;
egdanield5e3b9e2016-03-08 12:19:54 -0800109 // We could actually query and get a max size for each config, however maxImageDimension2D will
110 // give the minimum max size across all configs. So for simplicity we will use that for now.
111 fMaxRenderTargetSize = properties.limits.maxImageDimension2D;
112 fMaxTextureSize = properties.limits.maxImageDimension2D;
113
114 this->initSampleCount(properties);
115
egdanield5e3b9e2016-03-08 12:19:54 -0800116 // Assuming since we will always map in the end to upload the data we might as well just map
117 // from the get go. There is no hard data to suggest this is faster or slower.
cdalton397536c2016-03-25 12:15:03 -0700118 fBufferMapThreshold = 0;
egdanield5e3b9e2016-03-08 12:19:54 -0800119
120 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
121
122 fStencilWrapOpsSupport = true;
123 fOversizedStencilSupport = true;
ethannicholas28ef4452016-03-25 09:26:03 -0700124 fSampleShadingSupport = SkToBool(featureFlags & kSampleRateShading_GrVkFeatureFlag);
egdanield5e3b9e2016-03-08 12:19:54 -0800125}
126
jvanverthfd7bd452016-03-25 06:29:52 -0700127void GrVkCaps::initGLSLCaps(const VkPhysicalDeviceProperties& properties,
128 uint32_t featureFlags) {
Greg Daniel164a9f02016-02-22 09:56:40 -0500129 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
egdaniel3a15fd42016-04-05 11:00:29 -0700130 glslCaps->fVersionDeclString = "#version 330\n";
131
Greg Daniel164a9f02016-02-22 09:56:40 -0500132
133 // fConfigOutputSwizzle will default to RGBA so we only need to set it for alpha only config.
134 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
135 GrPixelConfig config = static_cast<GrPixelConfig>(i);
136 if (GrPixelConfigIsAlphaOnly(config)) {
137 glslCaps->fConfigTextureSwizzle[i] = GrSwizzle::RRRR();
138 glslCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
139 } else {
egdaniel3fe03272016-08-15 10:59:17 -0700140 if (kRGBA_4444_GrPixelConfig == config) {
141 // The vulkan spec does not require R4G4B4A4 to be supported for texturing so we
142 // store the data in a B4G4R4A4 texture and then swizzle it when doing texture reads
143 // or writing to outputs. Since we're not actually changing the data at all, the
144 // only extra work is the swizzle in the shader for all operations.
145 glslCaps->fConfigTextureSwizzle[i] = GrSwizzle::BGRA();
146 glslCaps->fConfigOutputSwizzle[i] = GrSwizzle::BGRA();
147 } else {
148 glslCaps->fConfigTextureSwizzle[i] = GrSwizzle::RGBA();
149 }
Greg Daniel164a9f02016-02-22 09:56:40 -0500150 }
151 }
egdaniel67acb832016-02-26 08:32:20 -0800152
egdanield5e3b9e2016-03-08 12:19:54 -0800153 // Vulkan is based off ES 3.0 so the following should all be supported
154 glslCaps->fUsesPrecisionModifiers = true;
155 glslCaps->fFlatInterpolationSupport = true;
156
157 // GrShaderCaps
158
egdaniel67acb832016-02-26 08:32:20 -0800159 glslCaps->fShaderDerivativeSupport = true;
jvanverthfd7bd452016-03-25 06:29:52 -0700160 glslCaps->fGeometryShaderSupport = SkToBool(featureFlags & kGeometryShader_GrVkFeatureFlag);
egdanield632bb42016-03-30 12:06:48 -0700161
jvanverthfd7bd452016-03-25 06:29:52 -0700162 glslCaps->fDualSourceBlendingSupport = SkToBool(featureFlags & kDualSrcBlend_GrVkFeatureFlag);
egdanield632bb42016-03-30 12:06:48 -0700163
egdanield5e3b9e2016-03-08 12:19:54 -0800164 glslCaps->fIntegerSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800165
cdaltona6b92ad2016-04-11 12:03:08 -0700166 // Assume the minimum precisions mandated by the SPIR-V spec.
167 glslCaps->fShaderPrecisionVaries = true;
168 for (int s = 0; s < kGrShaderTypeCount; ++s) {
169 auto& highp = glslCaps->fFloatPrecisions[s][kHigh_GrSLPrecision];
170 highp.fLogRangeLow = highp.fLogRangeHigh = 127;
171 highp.fBits = 23;
172
173 auto& mediump = glslCaps->fFloatPrecisions[s][kMedium_GrSLPrecision];
174 mediump.fLogRangeLow = mediump.fLogRangeHigh = 14;
175 mediump.fBits = 10;
176
177 glslCaps->fFloatPrecisions[s][kLow_GrSLPrecision] = mediump;
178 }
179 glslCaps->initSamplerPrecisionTable();
180
cdalton9c3f1432016-03-11 10:07:37 -0800181 glslCaps->fMaxVertexSamplers =
182 glslCaps->fMaxGeometrySamplers =
183 glslCaps->fMaxFragmentSamplers = SkTMin(properties.limits.maxPerStageDescriptorSampledImages,
184 properties.limits.maxPerStageDescriptorSamplers);
185 glslCaps->fMaxCombinedSamplers = SkTMin(properties.limits.maxDescriptorSetSampledImages,
186 properties.limits.maxDescriptorSetSamplers);
Greg Daniel164a9f02016-02-22 09:56:40 -0500187}
188
egdaniel8f1dcaa2016-04-01 10:10:45 -0700189bool stencil_format_supported(const GrVkInterface* interface,
190 VkPhysicalDevice physDev,
191 VkFormat format) {
Greg Daniel164a9f02016-02-22 09:56:40 -0500192 VkFormatProperties props;
193 memset(&props, 0, sizeof(VkFormatProperties));
194 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
egdaniel8f1dcaa2016-04-01 10:10:45 -0700195 return SkToBool(VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT & props.optimalTilingFeatures);
Greg Daniel164a9f02016-02-22 09:56:40 -0500196}
197
egdaniel8f1dcaa2016-04-01 10:10:45 -0700198void GrVkCaps::initStencilFormat(const GrVkInterface* interface, VkPhysicalDevice physDev) {
199 // List of legal stencil formats (though perhaps not supported on
200 // the particular gpu/driver) from most preferred to least. We are guaranteed to have either
jvanvertha4b0fed2016-04-27 11:42:21 -0700201 // VK_FORMAT_D24_UNORM_S8_UINT or VK_FORMAT_D32_SFLOAT_S8_UINT. VK_FORMAT_D32_SFLOAT_S8_UINT
egdaniel8f1dcaa2016-04-01 10:10:45 -0700202 // can optionally have 24 unused bits at the end so we assume the total bits is 64.
Greg Daniel164a9f02016-02-22 09:56:40 -0500203 static const StencilFormat
204 // internal Format stencil bits total bits packed?
205 gS8 = { VK_FORMAT_S8_UINT, 8, 8, false },
egdaniel8f1dcaa2016-04-01 10:10:45 -0700206 gD24S8 = { VK_FORMAT_D24_UNORM_S8_UINT, 8, 32, true },
207 gD32S8 = { VK_FORMAT_D32_SFLOAT_S8_UINT, 8, 64, true };
Greg Daniel164a9f02016-02-22 09:56:40 -0500208
egdaniel8f1dcaa2016-04-01 10:10:45 -0700209 if (stencil_format_supported(interface, physDev, VK_FORMAT_S8_UINT)) {
210 fPreferedStencilFormat = gS8;
211 } else if (stencil_format_supported(interface, physDev, VK_FORMAT_D24_UNORM_S8_UINT)) {
212 fPreferedStencilFormat = gD24S8;
213 } else {
214 SkASSERT(stencil_format_supported(interface, physDev, VK_FORMAT_D32_SFLOAT_S8_UINT));
215 fPreferedStencilFormat = gD32S8;
216 }
217}
218
219void GrVkCaps::initConfigTable(const GrVkInterface* interface, VkPhysicalDevice physDev) {
220 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
221 VkFormat format;
222 if (GrPixelConfigToVkFormat(static_cast<GrPixelConfig>(i), &format)) {
223 fConfigTable[i].init(interface, physDev, format);
224 }
225 }
226}
227
228void GrVkCaps::ConfigInfo::InitConfigFlags(VkFormatFeatureFlags vkFlags, uint16_t* flags) {
229 if (SkToBool(VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT & vkFlags) &&
230 SkToBool(VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT & vkFlags)) {
231 *flags = *flags | kTextureable_Flag;
232 }
233
234 if (SkToBool(VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT & vkFlags)) {
235 *flags = *flags | kRenderable_Flag;
236 }
237
238 if (SkToBool(VK_FORMAT_FEATURE_BLIT_SRC_BIT & vkFlags)) {
239 *flags = *flags | kBlitSrc_Flag;
240 }
241
242 if (SkToBool(VK_FORMAT_FEATURE_BLIT_DST_BIT & vkFlags)) {
243 *flags = *flags | kBlitDst_Flag;
244 }
245}
246
247void GrVkCaps::ConfigInfo::init(const GrVkInterface* interface,
248 VkPhysicalDevice physDev,
249 VkFormat format) {
250 VkFormatProperties props;
251 memset(&props, 0, sizeof(VkFormatProperties));
252 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
253 InitConfigFlags(props.linearTilingFeatures, &fLinearFlags);
254 InitConfigFlags(props.optimalTilingFeatures, &fOptimalFlags);
Greg Daniel164a9f02016-02-22 09:56:40 -0500255}