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

Unified Diff: src/gpu/vk/GrVkImageView.h

Issue 1723503002: Revert of Add vulkan files into skia repo. (Closed) Base URL: https://skia.googlesource.com/skia.git@merge
Patch Set: Created 4 years, 10 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 | « src/gpu/vk/GrVkImage.cpp ('k') | src/gpu/vk/GrVkImageView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/vk/GrVkImageView.h
diff --git a/src/gpu/vk/GrVkImageView.h b/src/gpu/vk/GrVkImageView.h
deleted file mode 100644
index 43e960454eee45acabffba50e9626513c3392bd8..0000000000000000000000000000000000000000
--- a/src/gpu/vk/GrVkImageView.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
-* Copyright 2016 Google Inc.
-*
-* Use of this source code is governed by a BSD-style license that can be
-* found in the LICENSE file.
-*/
-
-#ifndef GrVkImageView_DEFINED
-#define GrVkImageView_DEFINED
-
-#include "GrTypes.h"
-
-#include "GrVkResource.h"
-
-#include "vulkan/vulkan.h"
-
-class GrVkImageView : public GrVkResource {
-public:
- enum Type {
- kColor_Type,
- kStencil_Type
- };
-
- static const GrVkImageView* Create(GrVkGpu* gpu, VkImage image, VkFormat format, Type viewType);
-
- VkImageView imageView() const { return fImageView; }
-
-private:
- GrVkImageView(VkImageView imageView) : INHERITED(), fImageView(imageView) {}
-
- GrVkImageView(const GrVkImageView&);
- GrVkImageView& operator=(const GrVkImageView&);
-
- void freeGPUData(const GrVkGpu* gpu) const override;
-
- VkImageView fImageView;
-
- typedef GrVkResource INHERITED;
-};
-
-#endif
« no previous file with comments | « src/gpu/vk/GrVkImage.cpp ('k') | src/gpu/vk/GrVkImageView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698