summaryrefslogtreecommitdiffstats
path: root/xbmc/windowing/gbm/VideoLayerBridge.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/windowing/gbm/VideoLayerBridge.h')
-rw-r--r--xbmc/windowing/gbm/VideoLayerBridge.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/xbmc/windowing/gbm/VideoLayerBridge.h b/xbmc/windowing/gbm/VideoLayerBridge.h
new file mode 100644
index 0000000..7070567
--- /dev/null
+++ b/xbmc/windowing/gbm/VideoLayerBridge.h
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+namespace KODI
+{
+namespace WINDOWING
+{
+namespace GBM
+{
+
+class CVideoLayerBridge
+{
+public:
+ virtual ~CVideoLayerBridge() = default;
+ virtual void Disable() {}
+};
+
+}
+}
+}