1// Aseprite
2// Copyright (C) 2021 Igara Studio S.A.
3//
4// This program is distributed under the terms of
5// the End-User License Agreement for Aseprite.
6
7#ifndef APP_DRM_H_INCLUDED
8#define APP_DRM_H_INCLUDED
9#pragma once
10
11#ifdef ENABLE_DRM
12 #include "drm/drm.h"
13#else
14 #define DRM_INVALID if (false)
15#endif
16
17#endif
18