| Index: include/gpu/vk/GrVkTypes.h
|
| diff --git a/include/gpu/vk/GrVkTypes.h b/include/gpu/vk/GrVkTypes.h
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..e671f5ddddbd5768f5e70470c205f243ef7e6605
|
| --- /dev/null
|
| +++ b/include/gpu/vk/GrVkTypes.h
|
| @@ -0,0 +1,42 @@
|
| +
|
| +/*
|
| + * 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 GrVkTypes_DEFINED
|
| +#define GrVkTypes_DEFINED
|
| +
|
| +#include <vulkan/vulkan.h>
|
| +
|
| +/**
|
| + * KHR_debug
|
| + */
|
| +/*typedef void (GR_GL_FUNCTION_TYPE* GrVkDEBUGPROC)(GrVkenum source,
|
| + GrVkenum type,
|
| + GrVkuint id,
|
| + GrVkenum severity,
|
| + GrVksizei length,
|
| + const GrVkchar* message,
|
| + const void* userParam);*/
|
| +
|
| +
|
| +
|
| +///////////////////////////////////////////////////////////////////////////////
|
| +/**
|
| + * Types for interacting with Vulkan resources created externally to Skia. GrBackendObjects for
|
| + * Vulkan textures are really const GrVkTextureInfo*
|
| + */
|
| +
|
| +struct GrVkTextureInfo {
|
| + VkImage fImage;
|
| + VkDeviceMemory fAlloc; // this may be null iff the texture is an RT and uses borrow semantics
|
| + VkImageTiling fImageTiling;
|
| + VkImageLayout fImageLayout;
|
| +};
|
| +
|
| +GR_STATIC_ASSERT(sizeof(GrBackendObject) >= sizeof(const GrVkTextureInfo*));
|
| +
|
| +#endif
|
|
|