blob: c0af903a9e082ba6a44a451e342fe0091c5b9f00 [file] [log] [blame]
/* Copyright (c) 2018 The Khronos Group Inc.
* Copyright (c) 2018 Valve Corporation
* Copyright (c) 2018 LunarG, Inc.
* Copyright (C) 2018 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author: Dave Houlton <daveh@lunarg.com>
*/
#ifndef ANDROID_NDK_TYPES_H_
#define ANDROID_NDK_TYPES_H_
#ifdef VK_USE_PLATFORM_ANDROID_KHR
#ifdef __ANDROID__ // If we have an NDK, use it
#include <android/hardware_buffer.h>
#else
// For convenience, define the minimal set of NDK enums and structs needed to compile
// VK_ANDROID_external_memory_android_hardware_buffer validation without an NDK present
struct AHardwareBuffer {};
// Enumerations of format and usage flags for Android opaque external memory blobs
typedef enum AHardwareBufferFormat {
AHARDWAREBUFFER_FORMAT_R8G8B8A8_UNORM = 1,
AHARDWAREBUFFER_FORMAT_R8G8B8X8_UNORM = 2,
AHARDWAREBUFFER_FORMAT_R8G8B8_UNORM = 3,
AHARDWAREBUFFER_FORMAT_R5G6B5_UNORM = 4,
AHARDWAREBUFFER_FORMAT_R16G16B16A16_FLOAT = 0x16,
AHARDWAREBUFFER_FORMAT_R10G10B10A2_UNORM = 0x2b,
AHARDWAREBUFFER_FORMAT_D16_UNORM = 0x30,
AHARDWAREBUFFER_FORMAT_D24_UNORM = 0x31,
AHARDWAREBUFFER_FORMAT_D24_UNORM_S8_UINT = 0x32,
AHARDWAREBUFFER_FORMAT_D32_FLOAT = 0x33,
AHARDWAREBUFFER_FORMAT_D32_FLOAT_S8_UINT = 0x34,
AHARDWAREBUFFER_FORMAT_S8_UINT = 0x35,
AHARDWAREBUFFER_FORMAT_BLOB = 0x21
} AHardwareBufferFormat;
typedef enum AHardwareBufferUsage {
AHARDWAREBUFFER_USAGE_GPU_SAMPLED_IMAGE = 0x100,
AHARDWAREBUFFER_USAGE_GPU_COLOR_OUTPUT = 0x200,
AHARDWAREBUFFER_USAGE_GPU_CUBE_MAP = 0x2000000,
AHARDWAREBUFFER_USAGE_GPU_MIPMAP_COMPLETE = 0x4000000,
AHARDWAREBUFFER_USAGE_PROTECTED_CONTENT = 0x4000,
AHARDWAREBUFFER_USAGE_GPU_DATA_BUFFER = 0x1000000
} AHardwareBufferUsage;
typedef struct AHardwareBuffer_Desc {
uint32_t format; // One of AHARDWAREBUFFER_FORMAT_*.
uint32_t height; // Height in pixels.
uint32_t layers; // Number of images in an image array.
uint32_t rfu0; // Initialize to zero, reserved for future use.
uint64_t rfu1; // Initialize to zero, reserved for future use.
uint32_t stride; // Row stride in pixels, ignored for AHardwareBuffer_allocate()
uint64_t usage; // Combination of AHARDWAREBUFFER_USAGE_*.
uint32_t width; // Width in pixels.
} AHardwareBuffer_Desc;
// Minimal NDK fxn stubs to allow testing on ndk-less platform
static inline int AHardwareBuffer_allocate(const AHardwareBuffer_Desc *ahbDesc, AHardwareBuffer **buffer) {
size_t size = ahbDesc->height * ahbDesc->width * 8; // Alloc for largest (64 bpp) format
if (size < sizeof(AHardwareBuffer_Desc)) size = sizeof(AHardwareBuffer_Desc);
*buffer = (AHardwareBuffer *)malloc(size);
memcpy((void *)(*buffer), (void *)ahbDesc, sizeof(AHardwareBuffer_Desc));
return 0;
}
static inline void AHardwareBuffer_release(AHardwareBuffer *buffer) {
if (buffer) free(buffer);
}
static inline void AHardwareBuffer_describe(const AHardwareBuffer *buffer, AHardwareBuffer_Desc *outDesc) {
if (buffer && outDesc) {
memcpy((void *)outDesc, (void *)buffer, sizeof(AHardwareBuffer_Desc));
}
return;
}
#endif // __ANDROID__
#endif // VK_USE_PLATFORM_ANDROID_KHR
#endif // ANDROID_NDK_TYPES_H_