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

Side by Side Diff: include/gpu/vk/GrVkTypes.h

Issue 1906623002: Update min Vulkan version to 1.0.8.0, and fix various bugs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/gpu/vk/GrVkBackendContext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2016 Google Inc. 3 * Copyright 2016 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef GrVkTypes_DEFINED 9 #ifndef GrVkTypes_DEFINED
10 #define GrVkTypes_DEFINED 10 #define GrVkTypes_DEFINED
(...skipping 17 matching lines...) Expand all
28 /** 28 /**
29 * Types for interacting with Vulkan resources created externally to Skia. GrBac kendObjects for 29 * Types for interacting with Vulkan resources created externally to Skia. GrBac kendObjects for
30 * Vulkan textures are really const GrVkTextureInfo* 30 * Vulkan textures are really const GrVkTextureInfo*
31 */ 31 */
32 32
33 struct GrVkTextureInfo { 33 struct GrVkTextureInfo {
34 VkImage fImage; 34 VkImage fImage;
35 VkDeviceMemory fAlloc; // this may be null iff the texture is an RT and u ses borrow semantics 35 VkDeviceMemory fAlloc; // this may be null iff the texture is an RT and u ses borrow semantics
36 VkImageTiling fImageTiling; 36 VkImageTiling fImageTiling;
37 VkImageLayout fImageLayout; 37 VkImageLayout fImageLayout;
38 VkFormat fFormat;
38 }; 39 };
39 40
40 GR_STATIC_ASSERT(sizeof(GrBackendObject) >= sizeof(const GrVkTextureInfo*)); 41 GR_STATIC_ASSERT(sizeof(GrBackendObject) >= sizeof(const GrVkTextureInfo*));
41 42
42 #endif 43 #endif
OLDNEW
« no previous file with comments | « no previous file | src/gpu/vk/GrVkBackendContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698