36 lines
592 B
C
36 lines
592 B
C
|
|
/**
|
||
|
|
* @file openxr_pico_ext.h
|
||
|
|
* @brief this header lists the openxr extensions defined by Pico
|
||
|
|
* which haven't join in the openxr registery yet.
|
||
|
|
* @version 0.1
|
||
|
|
*
|
||
|
|
* @copyright Copyright (c) 2022
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef OPENXR_PICO_H_
|
||
|
|
#define OPENXR_PICO_H_ 1
|
||
|
|
|
||
|
|
#if defined(__cplusplus)
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifdef XR_FB_passthrough
|
||
|
|
typedef enum {
|
||
|
|
NoneStyle = 0,
|
||
|
|
MonoToRgba = 1,
|
||
|
|
MonoToMono = 2,
|
||
|
|
HandsContrast = 3,
|
||
|
|
BrightnessContrastSaturation = 4,
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
EnumSize = 0x7fffffff
|
||
|
|
} PassthroughColorMapType;
|
||
|
|
#endif // XR_FB_passthrough
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif // OPENXR_PICO_H_
|