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

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

Issue 1808263002: Implement Vulkan GrBackendObject for textures. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Tweaks 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 unified diff | Download patch
« no previous file with comments | « gyp/gpu.gypi ('k') | src/gpu/vk/GrVkGpu.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 /*
3 * Copyright 2016 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9 #ifndef GrVkTypes_DEFINED
10 #define GrVkTypes_DEFINED
11
12 #include <vulkan/vulkan.h>
13
14 /**
15 * KHR_debug
16 */
17 /*typedef void (GR_GL_FUNCTION_TYPE* GrVkDEBUGPROC)(GrVkenum source,
18 GrVkenum type,
19 GrVkuint id,
20 GrVkenum severity,
21 GrVksizei length,
22 const GrVkchar* message,
23 const void* userParam);*/
24
25
26
27 ///////////////////////////////////////////////////////////////////////////////
28 /**
29 * Types for interacting with Vulkan resources created externally to Skia. GrBac kendObjects for
30 * Vulkan textures are really const GrVkTextureInfo*
31 */
32
33 struct GrVkTextureInfo {
34 VkImage fImage;
35 VkDeviceMemory fAlloc; // this may be null iff the texture is an RT and u ses borrow semantics
36 VkImageTiling fImageTiling;
37 VkImageLayout fImageLayout;
38 };
39
40 GR_STATIC_ASSERT(sizeof(GrBackendObject) >= sizeof(const GrVkTextureInfo*));
41
42 #endif
OLDNEW
« no previous file with comments | « gyp/gpu.gypi ('k') | src/gpu/vk/GrVkGpu.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698