GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_linux_drm.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2/*
3 * Copyright (C) 2022 Cyril Hrubis <metan@ucw.cz>
4 */
5
6#ifndef BACKENDS_GP_LINUX_DRM_H
7#define BACKENDS_GP_LINUX_DRM_H
8
9#include <backends/gp_backend.h>
10
11enum gp_linux_drm_flags {
12 /* Do not use linux input for keyboard and mouse */
13 GP_LINUX_DRM_NO_INPUT = 0x01,
14};
15
21gp_backend *gp_linux_drm_init(const char *drm_path, int flags);
22
23#endif /* BACKENDS_GP_LINUX_DRM_H */