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

Unified Diff: tools/vulkan/win/Window_win.cpp

Issue 1873453002: Some more improvements/fixes to the VulkanViewer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Remove unnecessary files Created 4 years, 8 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
Index: tools/vulkan/win/Window_win.cpp
diff --git a/tools/vulkan/win/Window_win.cpp b/tools/vulkan/win/Window_win.cpp
index 0c9e80227e01af4954ec1deeb3bb75eeb4493f3f..86120453e90ee015480d55cfa1c5987f112873ed 100644
--- a/tools/vulkan/win/Window_win.cpp
+++ b/tools/vulkan/win/Window_win.cpp
@@ -11,6 +11,7 @@
#include <windows.h>
#include <windowsx.h>
+#include "Timer.h"
egdaniel 2016/04/07 17:03:16 What does this guy need timer.h added? Was it just
jvanverth1 2016/04/07 17:57:03 Done.
#include "SkUtils.h"
#include "VulkanTestContext_win.h"
@@ -262,7 +263,7 @@ void Window_win::show() {
}
-bool Window_win::attach(BackEndTypes attachType, int msaaSampleCount, AttachmentInfo*) {
+bool Window_win::attach(BackEndType attachType, int msaaSampleCount, AttachmentInfo*) {
if (kVulkan_BackendType != attachType) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698