Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2651)

Unified Diff: gpu/vulkan/vulkan_implementation.h

Issue 1776453003: Added initial implementation of Vulkan Render Passes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn_vulkan
Patch Set: Adding logging/macros headers Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/vulkan/vulkan_image_view.cc ('k') | gpu/vulkan/vulkan_implementation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/vulkan/vulkan_implementation.h
diff --git a/gpu/vulkan/vulkan_implementation.h b/gpu/vulkan/vulkan_implementation.h
index 69214b2baf35f687328140ffbacd278c443c1d8d..8bdb500652e54d7ee23b3a28b1f1b378a6375ff8 100644
--- a/gpu/vulkan/vulkan_implementation.h
+++ b/gpu/vulkan/vulkan_implementation.h
@@ -7,14 +7,21 @@
#include <vulkan/vulkan.h>
+#include "base/memory/scoped_ptr.h"
+
namespace gpu {
+class VulkanCommandPool;
+
bool InitializeVulkan();
VkInstance GetVulkanInstance();
+VkPhysicalDevice GetVulkanPhysicalDevice();
VkDevice GetVulkanDevice();
VkQueue GetVulkanQueue();
+scoped_ptr<VulkanCommandPool> CreateCommandPool();
+
} // namespace gpu
#endif // GPU_VULKAN_VULKAN_WSI_API_IMPLEMENTATION_H_
« no previous file with comments | « gpu/vulkan/vulkan_image_view.cc ('k') | gpu/vulkan/vulkan_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698