File: vesa.h

package info (click to toggle)
v4l-utils 1.32.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,276 kB
  • sloc: ansic: 85,528; cpp: 69,473; perl: 11,915; sh: 1,333; python: 883; php: 119; makefile: 39
file content (18 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#ifndef _LINUX_VESA_H
#define _LINUX_VESA_H

/* VESA Blanking Levels */
enum vesa_blank_mode {
	VESA_NO_BLANKING	= 0,
#define VESA_NO_BLANKING	VESA_NO_BLANKING
	VESA_VSYNC_SUSPEND	= 1,
#define VESA_VSYNC_SUSPEND	VESA_VSYNC_SUSPEND
	VESA_HSYNC_SUSPEND	= 2,
#define VESA_HSYNC_SUSPEND	VESA_HSYNC_SUSPEND
	VESA_POWERDOWN		= VESA_VSYNC_SUSPEND | VESA_HSYNC_SUSPEND,
#define VESA_POWERDOWN		VESA_POWERDOWN
	VESA_BLANK_MAX		= VESA_POWERDOWN,
};

#endif