summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/drm.cpp4
-rw-r--r--src/gem.cpp4
-rw-r--r--src/helper/ioctl.cpp (renamed from src/ioctl.cpp)2
-rw-r--r--src/syncobject.cpp4
4 files changed, 7 insertions, 7 deletions
diff --git a/src/drm.cpp b/src/drm.cpp
index 6bb0a3a..3046412 100644
--- a/src/drm.cpp
+++ b/src/drm.cpp
@@ -1,8 +1,8 @@
/* SPDX-License-Identifier: MIT */
#include "drm++/drm.hpp"
-#include "drm++/helper.hpp"
-#include "drm++/ioctl.hpp"
+#include "drm++/helper/ioctl.hpp"
+#include "drm++/helper/types.hpp"
#include <stdexcept>
diff --git a/src/gem.cpp b/src/gem.cpp
index b6b3d38..82a459d 100644
--- a/src/gem.cpp
+++ b/src/gem.cpp
@@ -1,8 +1,8 @@
/* SPDX-License-Identifier: MIT */
#include "drm++/gem.hpp"
-#include "drm++/helper.hpp"
-#include "drm++/ioctl.hpp"
+#include "drm++/helper/ioctl.hpp"
+#include "drm++/helper/types.hpp"
#include <cassert>
#include <cerrno>
diff --git a/src/ioctl.cpp b/src/helper/ioctl.cpp
index 8b4962f..21a1ccb 100644
--- a/src/ioctl.cpp
+++ b/src/helper/ioctl.cpp
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: MIT */
-#include "drm++/ioctl.hpp"
+#include "drm++/helper/ioctl.hpp"
#include <format>
#include <string>
diff --git a/src/syncobject.cpp b/src/syncobject.cpp
index 4ec1a9c..6d7f68e 100644
--- a/src/syncobject.cpp
+++ b/src/syncobject.cpp
@@ -1,8 +1,8 @@
/* SPDX-License-Identifier: MIT */
#include "drm++/syncobject.hpp"
-#include "drm++/helper.hpp"
-#include "drm++/ioctl.hpp"
+#include "drm++/helper/ioctl.hpp"
+#include "drm++/helper/types.hpp"
#include <cassert>
#include <cstddef>