mirror of
https://git.eden-emu.dev/eden-emu/libadrenotools
synced 2026-02-04 10:51:21 +01:00
13 lines
295 B
C
13 lines
295 B
C
// SPDX-License-Identifier: BSD-2-Clause
|
|
// Copyright © 2021 Billy Laws
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @brief Bitfield enum of additional driver features that can be used with adrenotools_open_libvulkan
|
|
*/
|
|
enum {
|
|
ADRENOTOOLS_DRIVER_CUSTOM = 1 << 0,
|
|
ADRENOTOOLS_DRIVER_FILE_REDIRECT = 1 << 1
|
|
};
|