Matthew Waters | 5de6dd9 | 2015-10-24 17:29:05 +1100 | [diff] [blame] | 1 | /* |
| 2 | * GStreamer |
| 3 | * Copyright (C) 2015 Matthew Waters <matthew@centricular.com> |
| 4 | * |
| 5 | * This library is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU Library General Public |
| 7 | * License as published by the Free Software Foundation; either |
| 8 | * version 2 of the License, or (at your option) any later version. |
| 9 | * |
| 10 | * This library is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | * Library General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU Library General Public |
| 16 | * License along with this library; if not, write to the |
| 17 | * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, |
| 18 | * Boston, MA 02110-1301, USA. |
| 19 | */ |
| 20 | |
| 21 | #ifndef _VK_H_ |
| 22 | #define _VK_H_ |
| 23 | |
| 24 | #include <gst/gst.h> |
| 25 | |
Matthew Waters | 6fe5975 | 2015-12-29 16:05:17 +1100 | [diff] [blame] | 26 | #include "vkapi.h" |
Matthew Waters | 5de6dd9 | 2015-10-24 17:29:05 +1100 | [diff] [blame] | 27 | |
| 28 | #include "vkerror.h" |
| 29 | #include "vkinstance.h" |
| 30 | #include "vkdevice.h" |
| 31 | #include "vkqueue.h" |
Matthew Waters | af8c458 | 2016-09-01 19:51:11 +1000 | [diff] [blame] | 32 | #include "vkfence.h" |
Matthew Waters | 0f80009 | 2016-09-01 19:52:40 +1000 | [diff] [blame] | 33 | #include "vktrash.h" |
Matthew Waters | 5de6dd9 | 2015-10-24 17:29:05 +1100 | [diff] [blame] | 34 | #include "vkdisplay.h" |
| 35 | #include "vkwindow.h" |
| 36 | #include "vkswapper.h" |
| 37 | #include "vkmemory.h" |
Matthew Waters | bd41cc4 | 2016-02-05 19:18:40 +1100 | [diff] [blame] | 38 | #include "vkbuffermemory.h" |
Matthew Waters | 5de6dd9 | 2015-10-24 17:29:05 +1100 | [diff] [blame] | 39 | #include "vkimagememory.h" |
Matthew Waters | 0dd1154 | 2016-02-09 00:07:38 +1100 | [diff] [blame] | 40 | #include "vkbufferpool.h" |
Matthew Waters | 996200f | 2015-12-07 17:33:43 +1100 | [diff] [blame] | 41 | #include "vkutils.h" |
Matthew Waters | 5de6dd9 | 2015-10-24 17:29:05 +1100 | [diff] [blame] | 42 | |
| 43 | #endif /* _VK_H_ */ |