mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
12 lines
156 B
C
12 lines
156 B
C
|
#pragma once
|
||
|
|
||
|
/**
|
||
|
* Enumeration of the possible modes in which video can be playing (2D, 3D)
|
||
|
*/
|
||
|
enum VideoMode
|
||
|
{
|
||
|
VIDEO_2D,
|
||
|
VIDEO_3DSBS,
|
||
|
VIDEO_3DTAB
|
||
|
};
|