diff options
| author | PancakeTAS <pancake@mgnet.work> | 2026-06-25 11:19:54 +0200 |
|---|---|---|
| committer | PancakeTAS <pancake@mgnet.work> | 2026-06-25 11:19:54 +0200 |
| commit | ab752cafbde3755e7a09b3ecae021a6727cb7112 (patch) | |
| tree | f7718df132f7683976c64974113d3148b43c46c5 /src | |
| parent | Bug fixes all across the project (diff) | |
Project hierarchy overhaul
Diffstat (limited to '')
| -rw-r--r-- | src/drm.cpp | 4 | ||||
| -rw-r--r-- | src/gem.cpp | 4 | ||||
| -rw-r--r-- | src/helper/ioctl.cpp (renamed from src/ioctl.cpp) | 2 | ||||
| -rw-r--r-- | src/syncobject.cpp | 4 |
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> |
