aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/vk/GrVkUtil.h
diff options
context:
space:
mode:
authorGravatar jvanverth <jvanverth@google.com>2016-03-25 06:29:52 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-25 06:29:52 -0700
commitfd7bd45ac2178ce6b4a390f517f605750aaef6c8 (patch)
treedd69d7228d7d4b4834035b4c141add63adb5f6ea /src/gpu/vk/GrVkUtil.h
parent64d094d7756534a9b9b0997aab225d9ceba098b6 (diff)
Revise layer, extension and feature setup for Vulkan
Moves all the extension setup logic into GrVkBackendContext, and pass extension and feature information to Skia via flags. Also adds version information to GrVkBackendContext. GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1832613003 TBR=bsalomon@google.com Review URL: https://codereview.chromium.org/1832613003
Diffstat (limited to 'src/gpu/vk/GrVkUtil.h')
-rw-r--r--src/gpu/vk/GrVkUtil.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gpu/vk/GrVkUtil.h b/src/gpu/vk/GrVkUtil.h
index 0b760cabe2..4fee31046d 100644
--- a/src/gpu/vk/GrVkUtil.h
+++ b/src/gpu/vk/GrVkUtil.h
@@ -14,9 +14,6 @@
#include "vulkan/vulkan.h"
-// the minimum version of Vulkan supported
-const uint32_t kGrVkMinimumVersion = VK_MAKE_VERSION(1, 0, 3);
-
// makes a Vk call on the interface
#define GR_VK_CALL(IFACE, X) (IFACE)->fFunctions.f##X;
// same as GR_VK_CALL but checks for success