blob: 773dd361d3116e16a3fe6c230525ba78c5af1141 [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"
Greg Danielf5d87582017-12-18 14:48:15 -05009#include "GrBackendSurface.h"
Robert Phillipsbf25d432017-04-07 10:08:53 -040010#include "GrRenderTargetProxy.h"
Brian Salomon3d86a192018-02-27 16:46:11 -050011#include "GrRenderTarget.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050012#include "GrShaderCaps.h"
Greg Danield3e65aa2018-08-01 09:19:45 -040013#include "GrVkInterface.h"
Greg Daniel164a9f02016-02-22 09:56:40 -050014#include "GrVkUtil.h"
jvanverthfd7bd452016-03-25 06:29:52 -070015#include "vk/GrVkBackendContext.h"
Greg Danielc0b03d82018-08-03 14:41:15 -040016#include "vk/GrVkExtensions.h"
Greg Daniel164a9f02016-02-22 09:56:40 -050017
18GrVkCaps::GrVkCaps(const GrContextOptions& contextOptions, const GrVkInterface* vkInterface,
Greg Daniela0651ac2018-08-08 09:23:18 -040019 VkPhysicalDevice physDev, const VkPhysicalDeviceFeatures2& features,
Greg Danielc0b03d82018-08-03 14:41:15 -040020 uint32_t instanceVersion, const GrVkExtensions& extensions)
egdanielc5ec1402016-03-28 12:14:42 -070021 : INHERITED(contextOptions) {
Greg Danielc0b03d82018-08-03 14:41:15 -040022
Greg Daniel164a9f02016-02-22 09:56:40 -050023 /**************************************************************************
Brian Salomon5e81a122018-08-23 16:46:07 -040024 * GrCaps fields
25 **************************************************************************/
jvanverth62340062016-04-26 08:01:44 -070026 fMipMapSupport = true; // always available in Vulkan
brianosmanf05ab1b2016-05-12 11:01:10 -070027 fSRGBSupport = true; // always available in Vulkan
brianosman88791862016-05-23 10:15:27 -070028 fNPOTTextureTileSupport = true; // always available in Vulkan
egdaniel37535c92016-06-30 08:23:30 -070029 fDiscardRenderTargetSupport = true;
Greg Daniel164a9f02016-02-22 09:56:40 -050030 fReuseScratchTextures = true; //TODO: figure this out
31 fGpuTracingSupport = false; //TODO: figure this out
Greg Daniel164a9f02016-02-22 09:56:40 -050032 fOversizedStencilSupport = false; //TODO: figure this out
Chris Dalton1d616352017-05-31 12:51:23 -060033 fInstanceAttribSupport = true;
Greg Daniel164a9f02016-02-22 09:56:40 -050034
Greg Daniel0fe4ed82018-03-15 12:27:29 +000035 fBlacklistCoverageCounting = true; // blacklisting ccpr until we work through a few issues.
jvanverth84741b32016-09-30 08:39:02 -070036 fFenceSyncSupport = true; // always available in Vulkan
Greg Daniel691f5e72018-02-28 14:21:34 -050037 fCrossContextTextureSupport = true;
Greg Daniel164a9f02016-02-22 09:56:40 -050038
39 fMapBufferFlags = kNone_MapFlags; //TODO: figure this out
cdalton397536c2016-03-25 12:15:03 -070040 fBufferMapThreshold = SK_MaxS32; //TODO: figure this out
Greg Daniel164a9f02016-02-22 09:56:40 -050041
42 fMaxRenderTargetSize = 4096; // minimum required by spec
43 fMaxTextureSize = 4096; // minimum required by spec
Greg Daniel164a9f02016-02-22 09:56:40 -050044
Brian Salomon5e81a122018-08-23 16:46:07 -040045 fDynamicStateArrayGeometryProcessorTextureSupport = true;
46
Brian Salomon94efbf52016-11-29 13:43:05 -050047 fShaderCaps.reset(new GrShaderCaps(contextOptions));
Greg Daniel164a9f02016-02-22 09:56:40 -050048
Greg Danielc0b03d82018-08-03 14:41:15 -040049 this->init(contextOptions, vkInterface, physDev, features, extensions);
Greg Daniel164a9f02016-02-22 09:56:40 -050050}
51
Robert Phillipsbf25d432017-04-07 10:08:53 -040052bool GrVkCaps::initDescForDstCopy(const GrRenderTargetProxy* src, GrSurfaceDesc* desc,
Brian Salomon2a4f9832018-03-03 22:43:43 -050053 GrSurfaceOrigin* origin, bool* rectsMustMatch,
54 bool* disallowSubrect) const {
Eric Karl74480882017-04-03 14:49:05 -070055 // Vk doesn't use rectsMustMatch or disallowSubrect. Always return false.
56 *rectsMustMatch = false;
57 *disallowSubrect = false;
58
Brian Salomon467921e2017-03-06 16:17:12 -050059 // We can always succeed here with either a CopyImage (none msaa src) or ResolveImage (msaa).
60 // For CopyImage we can make a simple texture, for ResolveImage we require the dst to be a
61 // render target as well.
Brian Salomon2a4f9832018-03-03 22:43:43 -050062 *origin = src->origin();
Brian Salomon467921e2017-03-06 16:17:12 -050063 desc->fConfig = src->config();
Greg Daniel55fa6472018-03-16 16:13:10 -040064 if (src->numColorSamples() > 1 || src->asTextureProxy()) {
Brian Salomon467921e2017-03-06 16:17:12 -050065 desc->fFlags = kRenderTarget_GrSurfaceFlag;
66 } else {
67 // Just going to use CopyImage here
68 desc->fFlags = kNone_GrSurfaceFlags;
69 }
70
71 return true;
72}
73
Greg Daniel25af6712018-04-25 10:44:38 -040074bool GrVkCaps::canCopyImage(GrPixelConfig dstConfig, int dstSampleCnt, GrSurfaceOrigin dstOrigin,
75 GrPixelConfig srcConfig, int srcSampleCnt,
76 GrSurfaceOrigin srcOrigin) const {
77 if ((dstSampleCnt > 1 || srcSampleCnt > 1) && dstSampleCnt != srcSampleCnt) {
78 return false;
79 }
80
81 // We require that all vulkan GrSurfaces have been created with transfer_dst and transfer_src
82 // as image usage flags.
83 if (srcOrigin != dstOrigin || GrBytesPerPixel(srcConfig) != GrBytesPerPixel(dstConfig)) {
84 return false;
85 }
86
87 if (this->shaderCaps()->configOutputSwizzle(srcConfig) !=
88 this->shaderCaps()->configOutputSwizzle(dstConfig)) {
89 return false;
90 }
91
92 return true;
93}
94
95bool GrVkCaps::canCopyAsBlit(GrPixelConfig dstConfig, int dstSampleCnt, bool dstIsLinear,
96 GrPixelConfig srcConfig, int srcSampleCnt, bool srcIsLinear) const {
97 // We require that all vulkan GrSurfaces have been created with transfer_dst and transfer_src
98 // as image usage flags.
99 if (!this->configCanBeDstofBlit(dstConfig, dstIsLinear) ||
100 !this->configCanBeSrcofBlit(srcConfig, srcIsLinear)) {
101 return false;
102 }
103
104 if (this->shaderCaps()->configOutputSwizzle(srcConfig) !=
105 this->shaderCaps()->configOutputSwizzle(dstConfig)) {
106 return false;
107 }
108
109 // We cannot blit images that are multisampled. Will need to figure out if we can blit the
110 // resolved msaa though.
111 if (dstSampleCnt > 1 || srcSampleCnt > 1) {
112 return false;
113 }
114
115 return true;
116}
117
118bool GrVkCaps::canCopyAsResolve(GrPixelConfig dstConfig, int dstSampleCnt,
119 GrSurfaceOrigin dstOrigin, GrPixelConfig srcConfig,
120 int srcSampleCnt, GrSurfaceOrigin srcOrigin) const {
121 // The src surface must be multisampled.
122 if (srcSampleCnt <= 1) {
123 return false;
124 }
125
126 // The dst must not be multisampled.
127 if (dstSampleCnt > 1) {
128 return false;
129 }
130
131 // Surfaces must have the same format.
132 if (dstConfig != srcConfig) {
133 return false;
134 }
135
136 // Surfaces must have the same origin.
137 if (srcOrigin != dstOrigin) {
138 return false;
139 }
140
141 return true;
142}
143
144bool GrVkCaps::canCopyAsDraw(GrPixelConfig dstConfig, bool dstIsRenderable,
145 GrPixelConfig srcConfig, bool srcIsTextureable) const {
146 // TODO: Make copySurfaceAsDraw handle the swizzle
147 if (this->shaderCaps()->configOutputSwizzle(srcConfig) !=
148 this->shaderCaps()->configOutputSwizzle(dstConfig)) {
149 return false;
150 }
151
152 // Make sure the dst is a render target and the src is a texture.
153 if (!dstIsRenderable || !srcIsTextureable) {
154 return false;
155 }
156
157 return true;
158}
159
160bool GrVkCaps::canCopySurface(const GrSurfaceProxy* dst, const GrSurfaceProxy* src,
161 const SkIRect& srcRect, const SkIPoint& dstPoint) const {
162 GrSurfaceOrigin dstOrigin = dst->origin();
163 GrSurfaceOrigin srcOrigin = src->origin();
164
165 GrPixelConfig dstConfig = dst->config();
166 GrPixelConfig srcConfig = src->config();
167
168 // TODO: Figure out a way to track if we've wrapped a linear texture in a proxy (e.g.
169 // PromiseImage which won't get instantiated right away. Does this need a similar thing like the
170 // tracking of external or rectangle textures in GL? For now we don't create linear textures
171 // internally, and I don't believe anyone is wrapping them.
172 bool srcIsLinear = false;
173 bool dstIsLinear = false;
174
175 int dstSampleCnt = 0;
176 int srcSampleCnt = 0;
177 if (const GrRenderTargetProxy* rtProxy = dst->asRenderTargetProxy()) {
178 dstSampleCnt = rtProxy->numColorSamples();
179 }
180 if (const GrRenderTargetProxy* rtProxy = src->asRenderTargetProxy()) {
181 srcSampleCnt = rtProxy->numColorSamples();
182 }
183 SkASSERT((dstSampleCnt > 0) == SkToBool(dst->asRenderTargetProxy()));
184 SkASSERT((srcSampleCnt > 0) == SkToBool(src->asRenderTargetProxy()));
185
186 return this->canCopyImage(dstConfig, dstSampleCnt, dstOrigin,
187 srcConfig, srcSampleCnt, srcOrigin) ||
188 this->canCopyAsBlit(dstConfig, dstSampleCnt, dstIsLinear,
189 srcConfig, srcSampleCnt, srcIsLinear) ||
190 this->canCopyAsResolve(dstConfig, dstSampleCnt, dstOrigin,
191 srcConfig, srcSampleCnt, srcOrigin) ||
192 this->canCopyAsDraw(dstConfig, dstSampleCnt > 0,
193 srcConfig, SkToBool(src->asTextureProxy()));
194}
195
Greg Daniel164a9f02016-02-22 09:56:40 -0500196void GrVkCaps::init(const GrContextOptions& contextOptions, const GrVkInterface* vkInterface,
Greg Daniela0651ac2018-08-08 09:23:18 -0400197 VkPhysicalDevice physDev, const VkPhysicalDeviceFeatures2& features,
Greg Danielc0b03d82018-08-03 14:41:15 -0400198 const GrVkExtensions& extensions) {
Greg Daniel164a9f02016-02-22 09:56:40 -0500199
Jim Van Verth6a40abc2017-11-02 16:56:09 +0000200 VkPhysicalDeviceProperties properties;
201 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties(physDev, &properties));
egdanield5e3b9e2016-03-08 12:19:54 -0800202
egdanield5e3b9e2016-03-08 12:19:54 -0800203 VkPhysicalDeviceMemoryProperties memoryProperties;
204 GR_VK_CALL(vkInterface, GetPhysicalDeviceMemoryProperties(physDev, &memoryProperties));
205
Greg Danielc0b03d82018-08-03 14:41:15 -0400206 uint32_t physicalDeviceVersion = properties.apiVersion;
207
208 if (physicalDeviceVersion >= VK_MAKE_VERSION(1, 1, 0) ||
209 extensions.hasExtension(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME, 1)) {
210 fSupportsPhysicalDeviceProperties2 = true;
211 }
212
213 if (physicalDeviceVersion >= VK_MAKE_VERSION(1, 1, 0) ||
214 extensions.hasExtension(VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME, 1)) {
215 fSupportsMemoryRequirements2 = true;
216 }
217
218 if (physicalDeviceVersion >= VK_MAKE_VERSION(1, 1, 0) ||
219 extensions.hasExtension(VK_KHR_MAINTENANCE1_EXTENSION_NAME, 1)) {
220 fSupportsMaintenance1 = true;
221 }
222
223 if (physicalDeviceVersion >= VK_MAKE_VERSION(1, 1, 0) ||
224 extensions.hasExtension(VK_KHR_MAINTENANCE2_EXTENSION_NAME, 1)) {
225 fSupportsMaintenance2 = true;
226 }
227
228 if (physicalDeviceVersion >= VK_MAKE_VERSION(1, 1, 0) ||
229 extensions.hasExtension(VK_KHR_MAINTENANCE3_EXTENSION_NAME, 1)) {
230 fSupportsMaintenance3 = true;
231 }
232
Greg Daniela9979d12018-08-27 15:56:46 -0400233 if (physicalDeviceVersion >= VK_MAKE_VERSION(1, 1, 0) ||
234 (extensions.hasExtension(VK_KHR_DEDICATED_ALLOCATION_EXTENSION_NAME, 3) &&
235 this->supportsMemoryRequirements2())) {
236 fSupportsDedicatedAllocation = true;
237 }
238
239 if (physicalDeviceVersion >= VK_MAKE_VERSION(1, 1, 0) ||
240 (extensions.hasExtension(VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME, 1) &&
241 this->supportsPhysicalDeviceProperties2() &&
242 extensions.hasExtension(VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME, 1) &&
243 this->supportsDedicatedAllocation())) {
244 fSupportsExternalMemory = true;
245 }
246
247#ifdef SK_BUILD_FOR_ANDROID
248 if (extensions.hasExtension(
249 VK_ANDROID_EXTERNAL_MEMORY_ANDROID_HARDWARE_BUFFER_EXTENSION_NAME, 3) &&
250 extensions.hasExtension(VK_EXT_QUEUE_FAMILY_FOREIGN_EXTENSION_NAME, 1) &&
251 this->supportsExternalMemory()) {
252 fSupportsAndroidHWBExternalMemory = true;
253 }
254#endif
255
Greg Daniel313c6952018-08-08 09:24:08 -0400256 this->initGrCaps(vkInterface, physDev, properties, memoryProperties, features, extensions);
Greg Daniel36443602018-08-02 12:51:52 -0400257 this->initShaderCaps(properties, features);
Greg Danielf3b11622018-03-01 15:01:27 -0500258
259 if (!contextOptions.fDisableDriverCorrectnessWorkarounds) {
260#if defined(SK_CPU_X86)
261 // We need to do this before initing the config table since it uses fSRGBSupport
262 if (kImagination_VkVendor == properties.vendorID) {
263 fSRGBSupport = false;
264 }
265#endif
266 }
267
Greg Daniel2bb6ecc2017-07-20 13:11:14 +0000268 this->initConfigTable(vkInterface, physDev, properties);
egdaniel8f1dcaa2016-04-01 10:10:45 -0700269 this->initStencilFormat(vkInterface, physDev);
Greg Daniel164a9f02016-02-22 09:56:40 -0500270
Greg Daniel691f5e72018-02-28 14:21:34 -0500271 if (!contextOptions.fDisableDriverCorrectnessWorkarounds) {
272 this->applyDriverCorrectnessWorkarounds(properties);
egdanielc5ec1402016-03-28 12:14:42 -0700273 }
Greg Daniel164a9f02016-02-22 09:56:40 -0500274
Greg Danielddc0c602018-06-18 11:26:30 -0400275 // On nexus player we disable suballocating VkImage memory since we've seen large slow downs on
276 // bot run times.
277 if (kImagination_VkVendor == properties.vendorID) {
278 fShouldAlwaysUseDedicatedImageMemory = true;
279 }
280
Greg Daniel691f5e72018-02-28 14:21:34 -0500281 this->applyOptionsOverrides(contextOptions);
282 fShaderCaps->applyOptionsOverrides(contextOptions);
283}
284
285void GrVkCaps::applyDriverCorrectnessWorkarounds(const VkPhysicalDeviceProperties& properties) {
egdaniel6fa0a912016-09-12 11:51:29 -0700286 if (kQualcomm_VkVendor == properties.vendorID) {
287 fMustDoCopiesFromOrigin = true;
288 }
289
egdanielfd016d72016-09-27 12:13:05 -0700290 if (kNvidia_VkVendor == properties.vendorID) {
egdanielfd016d72016-09-27 12:13:05 -0700291 fMustSubmitCommandsBeforeCopyOp = true;
292 }
293
Greg Daniel80a08dd2017-01-20 10:45:49 -0500294#if defined(SK_BUILD_FOR_WIN)
295 if (kNvidia_VkVendor == properties.vendorID) {
296 fMustSleepOnTearDown = true;
297 }
298#elif defined(SK_BUILD_FOR_ANDROID)
299 if (kImagination_VkVendor == properties.vendorID) {
300 fMustSleepOnTearDown = true;
301 }
302#endif
Greg Danielbce5eb92018-03-01 13:13:44 -0500303
304 // AMD seems to have issues binding new VkPipelines inside a secondary command buffer.
305 // Current workaround is to use a different secondary command buffer for each new VkPipeline.
306 if (kAMD_VkVendor == properties.vendorID) {
307 fNewCBOnPipelineChange = true;
308 }
309
Greg Danielddc0c602018-06-18 11:26:30 -0400310 // On Mali galaxy s7 we see lots of rendering issues when we suballocate VkImages.
311 if (kARM_VkVendor == properties.vendorID) {
312 fShouldAlwaysUseDedicatedImageMemory = true;
313 }
314
Greg Danielbce5eb92018-03-01 13:13:44 -0500315 ////////////////////////////////////////////////////////////////////////////
316 // GrCaps workarounds
317 ////////////////////////////////////////////////////////////////////////////
318
319 if (kARM_VkVendor == properties.vendorID) {
320 fInstanceAttribSupport = false;
321 }
322
323 // AMD advertises support for MAX_UINT vertex input attributes, but in reality only supports 32.
324 if (kAMD_VkVendor == properties.vendorID) {
325 fMaxVertexAttributes = SkTMin(fMaxVertexAttributes, 32);
326 }
327
Brian Salomon5e81a122018-08-23 16:46:07 -0400328 // The image-surface GM does not draw correctly on all tested NVIDIA systems.
329 if (kNvidia_VkVendor == properties.vendorID) {
330 fDynamicStateArrayGeometryProcessorTextureSupport = false;
331 }
332
Greg Danielbce5eb92018-03-01 13:13:44 -0500333 ////////////////////////////////////////////////////////////////////////////
334 // GrShaderCaps workarounds
335 ////////////////////////////////////////////////////////////////////////////
336
Greg Danielbce5eb92018-03-01 13:13:44 -0500337 if (kImagination_VkVendor == properties.vendorID) {
338 fShaderCaps->fAtan2ImplementedAsAtanYOverX = true;
339 }
340
Greg Daniel164a9f02016-02-22 09:56:40 -0500341}
342
343int get_max_sample_count(VkSampleCountFlags flags) {
344 SkASSERT(flags & VK_SAMPLE_COUNT_1_BIT);
345 if (!(flags & VK_SAMPLE_COUNT_2_BIT)) {
346 return 0;
347 }
348 if (!(flags & VK_SAMPLE_COUNT_4_BIT)) {
349 return 2;
350 }
351 if (!(flags & VK_SAMPLE_COUNT_8_BIT)) {
352 return 4;
353 }
354 if (!(flags & VK_SAMPLE_COUNT_16_BIT)) {
355 return 8;
356 }
357 if (!(flags & VK_SAMPLE_COUNT_32_BIT)) {
358 return 16;
359 }
360 if (!(flags & VK_SAMPLE_COUNT_64_BIT)) {
361 return 32;
362 }
363 return 64;
364}
365
Greg Daniel313c6952018-08-08 09:24:08 -0400366template<typename T> T* get_extension_feature_struct(const VkPhysicalDeviceFeatures2& features,
367 VkStructureType type) {
368 // All Vulkan structs that could be part of the features chain will start with the
369 // structure type followed by the pNext pointer. We cast to the CommonVulkanHeader
370 // so we can get access to the pNext for the next struct.
371 struct CommonVulkanHeader {
372 VkStructureType sType;
373 void* pNext;
374 };
375
376 void* pNext = features.pNext;
377 while (pNext) {
378 CommonVulkanHeader* header = static_cast<CommonVulkanHeader*>(pNext);
379 if (header->sType == type) {
380 return static_cast<T*>(pNext);
381 }
382 pNext = header->pNext;
383 }
384 return nullptr;
385}
386
387void GrVkCaps::initGrCaps(const GrVkInterface* vkInterface,
388 VkPhysicalDevice physDev,
389 const VkPhysicalDeviceProperties& properties,
jvanverthfd7bd452016-03-25 06:29:52 -0700390 const VkPhysicalDeviceMemoryProperties& memoryProperties,
Greg Daniel313c6952018-08-08 09:24:08 -0400391 const VkPhysicalDeviceFeatures2& features,
392 const GrVkExtensions& extensions) {
Greg Danielc5cc2de2017-03-20 11:40:58 -0400393 // So GPUs, like AMD, are reporting MAX_INT support vertex attributes. In general, there is no
394 // need for us ever to support that amount, and it makes tests which tests all the vertex
395 // attribs timeout looping over that many. For now, we'll cap this at 64 max and can raise it if
396 // we ever find that need.
397 static const uint32_t kMaxVertexAttributes = 64;
398 fMaxVertexAttributes = SkTMin(properties.limits.maxVertexInputAttributes, kMaxVertexAttributes);
Greg Danielc5cc2de2017-03-20 11:40:58 -0400399
egdanield5e3b9e2016-03-08 12:19:54 -0800400 // We could actually query and get a max size for each config, however maxImageDimension2D will
401 // give the minimum max size across all configs. So for simplicity we will use that for now.
jvanverthe78d4872016-09-27 03:33:05 -0700402 fMaxRenderTargetSize = SkTMin(properties.limits.maxImageDimension2D, (uint32_t)INT_MAX);
403 fMaxTextureSize = SkTMin(properties.limits.maxImageDimension2D, (uint32_t)INT_MAX);
Adrienne Walker724afe82018-05-15 11:36:26 -0700404 if (fDriverBugWorkarounds.max_texture_size_limit_4096) {
405 fMaxTextureSize = SkTMin(fMaxTextureSize, 4096);
406 }
407 // Our render targets are always created with textures as the color
408 // attachment, hence this min:
409 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
egdanield5e3b9e2016-03-08 12:19:54 -0800410
Chris Dalton2612bae2018-02-22 13:41:37 -0700411 // TODO: check if RT's larger than 4k incur a performance cost on ARM.
412 fMaxPreferredRenderTargetSize = fMaxRenderTargetSize;
413
egdanield5e3b9e2016-03-08 12:19:54 -0800414 // Assuming since we will always map in the end to upload the data we might as well just map
415 // from the get go. There is no hard data to suggest this is faster or slower.
cdalton397536c2016-03-25 12:15:03 -0700416 fBufferMapThreshold = 0;
egdanield5e3b9e2016-03-08 12:19:54 -0800417
418 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
419
egdanield5e3b9e2016-03-08 12:19:54 -0800420 fOversizedStencilSupport = true;
Greg Daniela0651ac2018-08-08 09:23:18 -0400421 fSampleShadingSupport = features.features.sampleRateShading;
Greg Daniel313c6952018-08-08 09:24:08 -0400422
423 if (extensions.hasExtension(VK_EXT_BLEND_OPERATION_ADVANCED_EXTENSION_NAME, 2) &&
424 this->supportsPhysicalDeviceProperties2()) {
425
426 VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT blendProps;
427 blendProps.sType =
428 VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_PROPERTIES_EXT;
429 blendProps.pNext = nullptr;
430
431 VkPhysicalDeviceProperties2 props;
432 props.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
433 props.pNext = &blendProps;
434
435 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties2(physDev, &props));
436
437 if (blendProps.advancedBlendAllOperations == VK_TRUE) {
438 fShaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
439
440 auto blendFeatures =
441 get_extension_feature_struct<VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT>(
442 features,
443 VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_FEATURES_EXT);
444 if (blendFeatures && blendFeatures->advancedBlendCoherentOperations == VK_TRUE) {
445 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
446 } else {
447 // TODO: Currently non coherent blends are not supported in our vulkan backend. They
448 // require us to support self dependencies in our render passes.
449 // fBlendEquationSupport = kAdvanced_BlendEquationSupport;
450 }
451 }
452 }
egdanield5e3b9e2016-03-08 12:19:54 -0800453}
454
Greg Daniel36443602018-08-02 12:51:52 -0400455void GrVkCaps::initShaderCaps(const VkPhysicalDeviceProperties& properties,
Greg Daniela0651ac2018-08-08 09:23:18 -0400456 const VkPhysicalDeviceFeatures2& features) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500457 GrShaderCaps* shaderCaps = fShaderCaps.get();
458 shaderCaps->fVersionDeclString = "#version 330\n";
egdaniel3a15fd42016-04-05 11:00:29 -0700459
Greg Daniel164a9f02016-02-22 09:56:40 -0500460
461 // fConfigOutputSwizzle will default to RGBA so we only need to set it for alpha only config.
462 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
463 GrPixelConfig config = static_cast<GrPixelConfig>(i);
Greg Danielef59d872017-11-17 16:47:21 -0500464 // Vulkan doesn't support a single channel format stored in alpha.
465 if (GrPixelConfigIsAlphaOnly(config) &&
466 kAlpha_8_as_Alpha_GrPixelConfig != config) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500467 shaderCaps->fConfigTextureSwizzle[i] = GrSwizzle::RRRR();
468 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
Greg Daniel164a9f02016-02-22 09:56:40 -0500469 } else {
Greg Daniel7af060a2017-12-05 16:27:11 -0500470 if (kGray_8_GrPixelConfig == config ||
471 kGray_8_as_Red_GrPixelConfig == config) {
Brian Osman986563b2017-01-10 14:20:02 -0500472 shaderCaps->fConfigTextureSwizzle[i] = GrSwizzle::RRRA();
473 } else if (kRGBA_4444_GrPixelConfig == config) {
egdaniel3fe03272016-08-15 10:59:17 -0700474 // The vulkan spec does not require R4G4B4A4 to be supported for texturing so we
475 // store the data in a B4G4R4A4 texture and then swizzle it when doing texture reads
476 // or writing to outputs. Since we're not actually changing the data at all, the
477 // only extra work is the swizzle in the shader for all operations.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500478 shaderCaps->fConfigTextureSwizzle[i] = GrSwizzle::BGRA();
479 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::BGRA();
egdaniel3fe03272016-08-15 10:59:17 -0700480 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500481 shaderCaps->fConfigTextureSwizzle[i] = GrSwizzle::RGBA();
egdaniel3fe03272016-08-15 10:59:17 -0700482 }
Greg Daniel164a9f02016-02-22 09:56:40 -0500483 }
484 }
egdaniel67acb832016-02-26 08:32:20 -0800485
egdanield5e3b9e2016-03-08 12:19:54 -0800486 // Vulkan is based off ES 3.0 so the following should all be supported
Brian Salomon1edc5b92016-11-29 13:43:46 -0500487 shaderCaps->fUsesPrecisionModifiers = true;
488 shaderCaps->fFlatInterpolationSupport = true;
Brian Salomon41274562017-09-15 09:40:03 -0700489 // Flat interpolation appears to be slow on Qualcomm GPUs. This was tested in GL and is assumed
490 // to be true with Vulkan as well.
491 shaderCaps->fPreferFlatInterpolation = kQualcomm_VkVendor != properties.vendorID;
egdanield5e3b9e2016-03-08 12:19:54 -0800492
493 // GrShaderCaps
494
Brian Salomon1edc5b92016-11-29 13:43:46 -0500495 shaderCaps->fShaderDerivativeSupport = true;
Chris Daltonf1b47bb2017-10-06 11:57:51 -0600496
Greg Daniela0651ac2018-08-08 09:23:18 -0400497 shaderCaps->fGeometryShaderSupport = features.features.geometryShader;
Chris Daltonf1b47bb2017-10-06 11:57:51 -0600498 shaderCaps->fGSInvocationsSupport = shaderCaps->fGeometryShaderSupport;
egdanield632bb42016-03-30 12:06:48 -0700499
Greg Daniela0651ac2018-08-08 09:23:18 -0400500 shaderCaps->fDualSourceBlendingSupport = features.features.dualSrcBlend;
egdanield632bb42016-03-30 12:06:48 -0700501
Brian Salomon1edc5b92016-11-29 13:43:46 -0500502 shaderCaps->fIntegerSupport = true;
Chris Dalton1d616352017-05-31 12:51:23 -0600503 shaderCaps->fVertexIDSupport = true;
Chris Dalton7c7ff032018-03-28 20:09:58 -0600504 shaderCaps->fFPManipulationSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800505
cdaltona6b92ad2016-04-11 12:03:08 -0700506 // Assume the minimum precisions mandated by the SPIR-V spec.
Chris Dalton47c8ed32017-11-15 18:27:09 -0700507 shaderCaps->fFloatIs32Bits = true;
508 shaderCaps->fHalfIs32Bits = false;
cdaltona6b92ad2016-04-11 12:03:08 -0700509
Ruiqi Maob609e6d2018-07-17 10:19:38 -0400510 // SPIR-V supports unsigned integers.
511 shaderCaps->fUnsignedSupport = true;
512
Brian Salomon1edc5b92016-11-29 13:43:46 -0500513 shaderCaps->fMaxVertexSamplers =
514 shaderCaps->fMaxGeometrySamplers =
515 shaderCaps->fMaxFragmentSamplers = SkTMin(
516 SkTMin(properties.limits.maxPerStageDescriptorSampledImages,
517 properties.limits.maxPerStageDescriptorSamplers),
518 (uint32_t)INT_MAX);
519 shaderCaps->fMaxCombinedSamplers = SkTMin(
520 SkTMin(properties.limits.maxDescriptorSetSampledImages,
521 properties.limits.maxDescriptorSetSamplers),
522 (uint32_t)INT_MAX);
Greg Daniel164a9f02016-02-22 09:56:40 -0500523}
524
egdaniel8f1dcaa2016-04-01 10:10:45 -0700525bool stencil_format_supported(const GrVkInterface* interface,
526 VkPhysicalDevice physDev,
527 VkFormat format) {
Greg Daniel164a9f02016-02-22 09:56:40 -0500528 VkFormatProperties props;
529 memset(&props, 0, sizeof(VkFormatProperties));
530 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
egdaniel8f1dcaa2016-04-01 10:10:45 -0700531 return SkToBool(VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT & props.optimalTilingFeatures);
Greg Daniel164a9f02016-02-22 09:56:40 -0500532}
533
egdaniel8f1dcaa2016-04-01 10:10:45 -0700534void GrVkCaps::initStencilFormat(const GrVkInterface* interface, VkPhysicalDevice physDev) {
535 // List of legal stencil formats (though perhaps not supported on
536 // the particular gpu/driver) from most preferred to least. We are guaranteed to have either
jvanvertha4b0fed2016-04-27 11:42:21 -0700537 // 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 -0700538 // can optionally have 24 unused bits at the end so we assume the total bits is 64.
Greg Daniel164a9f02016-02-22 09:56:40 -0500539 static const StencilFormat
540 // internal Format stencil bits total bits packed?
541 gS8 = { VK_FORMAT_S8_UINT, 8, 8, false },
egdaniel8f1dcaa2016-04-01 10:10:45 -0700542 gD24S8 = { VK_FORMAT_D24_UNORM_S8_UINT, 8, 32, true },
543 gD32S8 = { VK_FORMAT_D32_SFLOAT_S8_UINT, 8, 64, true };
Greg Daniel164a9f02016-02-22 09:56:40 -0500544
egdaniel8f1dcaa2016-04-01 10:10:45 -0700545 if (stencil_format_supported(interface, physDev, VK_FORMAT_S8_UINT)) {
546 fPreferedStencilFormat = gS8;
547 } else if (stencil_format_supported(interface, physDev, VK_FORMAT_D24_UNORM_S8_UINT)) {
548 fPreferedStencilFormat = gD24S8;
549 } else {
550 SkASSERT(stencil_format_supported(interface, physDev, VK_FORMAT_D32_SFLOAT_S8_UINT));
551 fPreferedStencilFormat = gD32S8;
552 }
553}
554
Greg Daniel2bb6ecc2017-07-20 13:11:14 +0000555void GrVkCaps::initConfigTable(const GrVkInterface* interface, VkPhysicalDevice physDev,
556 const VkPhysicalDeviceProperties& properties) {
egdaniel8f1dcaa2016-04-01 10:10:45 -0700557 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
558 VkFormat format;
559 if (GrPixelConfigToVkFormat(static_cast<GrPixelConfig>(i), &format)) {
Greg Daniel01907872017-05-23 15:21:02 -0400560 if (!GrPixelConfigIsSRGB(static_cast<GrPixelConfig>(i)) || fSRGBSupport) {
Greg Daniel2bb6ecc2017-07-20 13:11:14 +0000561 fConfigTable[i].init(interface, physDev, properties, format);
Greg Daniel01907872017-05-23 15:21:02 -0400562 }
egdaniel8f1dcaa2016-04-01 10:10:45 -0700563 }
564 }
565}
566
567void GrVkCaps::ConfigInfo::InitConfigFlags(VkFormatFeatureFlags vkFlags, uint16_t* flags) {
568 if (SkToBool(VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT & vkFlags) &&
569 SkToBool(VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT & vkFlags)) {
570 *flags = *flags | kTextureable_Flag;
egdaniel8f1dcaa2016-04-01 10:10:45 -0700571
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400572 // Ganesh assumes that all renderable surfaces are also texturable
573 if (SkToBool(VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT & vkFlags)) {
574 *flags = *flags | kRenderable_Flag;
575 }
egdaniel8f1dcaa2016-04-01 10:10:45 -0700576 }
577
578 if (SkToBool(VK_FORMAT_FEATURE_BLIT_SRC_BIT & vkFlags)) {
579 *flags = *flags | kBlitSrc_Flag;
580 }
581
582 if (SkToBool(VK_FORMAT_FEATURE_BLIT_DST_BIT & vkFlags)) {
583 *flags = *flags | kBlitDst_Flag;
584 }
585}
586
Greg Daniel81e7bf82017-07-19 14:47:42 -0400587void GrVkCaps::ConfigInfo::initSampleCounts(const GrVkInterface* interface,
588 VkPhysicalDevice physDev,
Greg Daniel2bb6ecc2017-07-20 13:11:14 +0000589 const VkPhysicalDeviceProperties& physProps,
Greg Daniel81e7bf82017-07-19 14:47:42 -0400590 VkFormat format) {
591 VkImageUsageFlags usage = VK_IMAGE_USAGE_TRANSFER_SRC_BIT |
592 VK_IMAGE_USAGE_TRANSFER_DST_BIT |
593 VK_IMAGE_USAGE_SAMPLED_BIT |
594 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
Greg Daniel81e7bf82017-07-19 14:47:42 -0400595 VkImageFormatProperties properties;
596 GR_VK_CALL(interface, GetPhysicalDeviceImageFormatProperties(physDev,
597 format,
598 VK_IMAGE_TYPE_2D,
599 VK_IMAGE_TILING_OPTIMAL,
600 usage,
Brian Osman2b23c4b2018-06-01 12:25:08 -0400601 0, // createFlags
Greg Daniel81e7bf82017-07-19 14:47:42 -0400602 &properties));
603 VkSampleCountFlags flags = properties.sampleCounts;
604 if (flags & VK_SAMPLE_COUNT_1_BIT) {
Mike Reedb5475792018-08-08 16:17:42 -0400605 fColorSampleCounts.push_back(1);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400606 }
Greg Daniel2bb6ecc2017-07-20 13:11:14 +0000607 if (kImagination_VkVendor == physProps.vendorID) {
608 // MSAA does not work on imagination
609 return;
610 }
Greg Daniel81e7bf82017-07-19 14:47:42 -0400611 if (flags & VK_SAMPLE_COUNT_2_BIT) {
Mike Reedb5475792018-08-08 16:17:42 -0400612 fColorSampleCounts.push_back(2);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400613 }
614 if (flags & VK_SAMPLE_COUNT_4_BIT) {
Mike Reedb5475792018-08-08 16:17:42 -0400615 fColorSampleCounts.push_back(4);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400616 }
617 if (flags & VK_SAMPLE_COUNT_8_BIT) {
Mike Reedb5475792018-08-08 16:17:42 -0400618 fColorSampleCounts.push_back(8);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400619 }
620 if (flags & VK_SAMPLE_COUNT_16_BIT) {
Mike Reedb5475792018-08-08 16:17:42 -0400621 fColorSampleCounts.push_back(16);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400622 }
623 if (flags & VK_SAMPLE_COUNT_32_BIT) {
Mike Reedb5475792018-08-08 16:17:42 -0400624 fColorSampleCounts.push_back(32);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400625 }
626 if (flags & VK_SAMPLE_COUNT_64_BIT) {
Mike Reedb5475792018-08-08 16:17:42 -0400627 fColorSampleCounts.push_back(64);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400628 }
629}
630
egdaniel8f1dcaa2016-04-01 10:10:45 -0700631void GrVkCaps::ConfigInfo::init(const GrVkInterface* interface,
632 VkPhysicalDevice physDev,
Greg Daniel2bb6ecc2017-07-20 13:11:14 +0000633 const VkPhysicalDeviceProperties& properties,
egdaniel8f1dcaa2016-04-01 10:10:45 -0700634 VkFormat format) {
635 VkFormatProperties props;
636 memset(&props, 0, sizeof(VkFormatProperties));
637 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
638 InitConfigFlags(props.linearTilingFeatures, &fLinearFlags);
639 InitConfigFlags(props.optimalTilingFeatures, &fOptimalFlags);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400640 if (fOptimalFlags & kRenderable_Flag) {
Greg Daniel2bb6ecc2017-07-20 13:11:14 +0000641 this->initSampleCounts(interface, physDev, properties, format);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400642 }
Greg Daniel164a9f02016-02-22 09:56:40 -0500643}
Greg Daniel81e7bf82017-07-19 14:47:42 -0400644
Brian Salomonbdecacf2018-02-02 20:32:49 -0500645int GrVkCaps::getRenderTargetSampleCount(int requestedCount, GrPixelConfig config) const {
646 requestedCount = SkTMax(1, requestedCount);
Greg Daniel81e7bf82017-07-19 14:47:42 -0400647 int count = fConfigTable[config].fColorSampleCounts.count();
Brian Salomonbdecacf2018-02-02 20:32:49 -0500648
649 if (!count) {
Greg Daniel81e7bf82017-07-19 14:47:42 -0400650 return 0;
651 }
652
Brian Salomonbdecacf2018-02-02 20:32:49 -0500653 if (1 == requestedCount) {
654 SkASSERT(fConfigTable[config].fColorSampleCounts.count() &&
655 fConfigTable[config].fColorSampleCounts[0] == 1);
656 return 1;
657 }
658
Greg Daniel81e7bf82017-07-19 14:47:42 -0400659 for (int i = 0; i < count; ++i) {
660 if (fConfigTable[config].fColorSampleCounts[i] >= requestedCount) {
661 return fConfigTable[config].fColorSampleCounts[i];
662 }
663 }
Brian Salomonbdecacf2018-02-02 20:32:49 -0500664 return 0;
665}
666
667int GrVkCaps::maxRenderTargetSampleCount(GrPixelConfig config) const {
668 const auto& table = fConfigTable[config].fColorSampleCounts;
669 if (!table.count()) {
670 return 0;
671 }
672 return table[table.count() - 1];
Brian Salomond653cac2018-02-01 13:58:00 -0500673}
674
Brian Salomon3d86a192018-02-27 16:46:11 -0500675bool GrVkCaps::surfaceSupportsWritePixels(const GrSurface* surface) const {
676 if (auto rt = surface->asRenderTarget()) {
677 return rt->numColorSamples() <= 1 && SkToBool(surface->asTexture());
678 }
679 return true;
680}
681
Robert Phillipsfc711a22018-02-13 17:03:00 -0500682bool validate_image_info(VkFormat format, SkColorType ct, GrPixelConfig* config) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500683 *config = kUnknown_GrPixelConfig;
Greg Danielf5d87582017-12-18 14:48:15 -0500684
685 switch (ct) {
686 case kUnknown_SkColorType:
687 return false;
688 case kAlpha_8_SkColorType:
689 if (VK_FORMAT_R8_UNORM == format) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500690 *config = kAlpha_8_as_Red_GrPixelConfig;
Greg Danielf5d87582017-12-18 14:48:15 -0500691 }
692 break;
693 case kRGB_565_SkColorType:
694 if (VK_FORMAT_R5G6B5_UNORM_PACK16 == format) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500695 *config = kRGB_565_GrPixelConfig;
Greg Danielf5d87582017-12-18 14:48:15 -0500696 }
697 break;
698 case kARGB_4444_SkColorType:
699 if (VK_FORMAT_B4G4R4A4_UNORM_PACK16 == format) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500700 *config = kRGBA_4444_GrPixelConfig;
Greg Danielf5d87582017-12-18 14:48:15 -0500701 }
702 break;
703 case kRGBA_8888_SkColorType:
704 if (VK_FORMAT_R8G8B8A8_UNORM == format) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500705 *config = kRGBA_8888_GrPixelConfig;
Greg Daniel7b219ac2017-12-18 14:49:04 -0500706 } else if (VK_FORMAT_R8G8B8A8_SRGB == format) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500707 *config = kSRGBA_8888_GrPixelConfig;
Greg Danielf5d87582017-12-18 14:48:15 -0500708 }
709 break;
Brian Salomone41e1762018-01-25 14:07:47 -0500710 case kRGB_888x_SkColorType:
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400711 // TODO: VK_FORMAT_R8G8B8_UNORM
Brian Salomone41e1762018-01-25 14:07:47 -0500712 return false;
Greg Danielf5d87582017-12-18 14:48:15 -0500713 case kBGRA_8888_SkColorType:
714 if (VK_FORMAT_B8G8R8A8_UNORM == format) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500715 *config = kBGRA_8888_GrPixelConfig;
Greg Daniel7b219ac2017-12-18 14:49:04 -0500716 } else if (VK_FORMAT_B8G8R8A8_SRGB == format) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500717 *config = kSBGRA_8888_GrPixelConfig;
Greg Danielf5d87582017-12-18 14:48:15 -0500718 }
719 break;
Brian Salomone41e1762018-01-25 14:07:47 -0500720 case kRGBA_1010102_SkColorType:
Brian Osman10fc6fd2018-03-02 11:01:10 -0500721 if (VK_FORMAT_A2B10G10R10_UNORM_PACK32 == format) {
722 *config = kRGBA_1010102_GrPixelConfig;
723 }
724 break;
Brian Salomone41e1762018-01-25 14:07:47 -0500725 case kRGB_101010x_SkColorType:
726 return false;
Greg Danielf5d87582017-12-18 14:48:15 -0500727 case kGray_8_SkColorType:
728 if (VK_FORMAT_R8_UNORM == format) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500729 *config = kGray_8_as_Red_GrPixelConfig;
Greg Danielf5d87582017-12-18 14:48:15 -0500730 }
731 break;
732 case kRGBA_F16_SkColorType:
733 if (VK_FORMAT_R16G16B16A16_SFLOAT == format) {
Greg Danielfaa095e2017-12-19 13:15:02 -0500734 *config = kRGBA_half_GrPixelConfig;
Greg Danielf5d87582017-12-18 14:48:15 -0500735 }
736 break;
Mike Klein37854712018-06-26 11:43:06 -0400737 case kRGBA_F32_SkColorType:
738 if (VK_FORMAT_R32G32B32A32_SFLOAT == format) {
739 *config = kRGBA_float_GrPixelConfig;
740 }
741 break;
Greg Danielf5d87582017-12-18 14:48:15 -0500742 }
743
Greg Danielfaa095e2017-12-19 13:15:02 -0500744 return kUnknown_GrPixelConfig != *config;
Greg Danielf5d87582017-12-18 14:48:15 -0500745}
746
Greg Danielfaa095e2017-12-19 13:15:02 -0500747bool GrVkCaps::validateBackendTexture(const GrBackendTexture& tex, SkColorType ct,
748 GrPixelConfig* config) const {
Greg Daniel52e16d92018-04-10 09:34:07 -0400749 GrVkImageInfo imageInfo;
750 if (!tex.getVkImageInfo(&imageInfo)) {
Robert Phillipsfc711a22018-02-13 17:03:00 -0500751 return false;
752 }
753
Greg Daniel52e16d92018-04-10 09:34:07 -0400754 return validate_image_info(imageInfo.fFormat, ct, config);
Greg Danielfaa095e2017-12-19 13:15:02 -0500755}
756
757bool GrVkCaps::validateBackendRenderTarget(const GrBackendRenderTarget& rt, SkColorType ct,
758 GrPixelConfig* config) const {
Greg Daniel323fbcf2018-04-10 13:46:30 -0400759 GrVkImageInfo imageInfo;
760 if (!rt.getVkImageInfo(&imageInfo)) {
Robert Phillipsfc711a22018-02-13 17:03:00 -0500761 return false;
762 }
763
Greg Daniel323fbcf2018-04-10 13:46:30 -0400764 return validate_image_info(imageInfo.fFormat, ct, config);
Robert Phillipsfc711a22018-02-13 17:03:00 -0500765}
766
767bool GrVkCaps::getConfigFromBackendFormat(const GrBackendFormat& format, SkColorType ct,
768 GrPixelConfig* config) const {
769 const VkFormat* vkFormat = format.getVkFormat();
770 if (!vkFormat) {
771 return false;
772 }
773 return validate_image_info(*vkFormat, ct, config);
Greg Danielfaa095e2017-12-19 13:15:02 -0500774}
Greg Danielf5d87582017-12-18 14:48:15 -0500775
Timothy Liang036fdfe2018-06-28 15:50:36 -0400776#ifdef GR_TEST_UTILS
777GrBackendFormat GrVkCaps::onCreateFormatFromBackendTexture(
778 const GrBackendTexture& backendTex) const {
779 GrVkImageInfo vkInfo;
780 SkAssertResult(backendTex.getVkImageInfo(&vkInfo));
781 return GrBackendFormat::MakeVk(vkInfo.fFormat);
782}
783#endif
784