kwin/src/plugins/platforms/drm/drm_pointer.h
Vlad Zahorodnii 93e0265e4e Move source code to src/ directory
Once in a while, we receive complaints from other fellow KDE developers
about the file organization of kwin. This change addresses some of those
complaints by moving all of source code in a separate directory, src/,
thus making the project structure more traditional. Things such as tests
are kept in their own toplevel directories.

This change may wreak havoc on merge requests that add new files to kwin,
but if a patch modifies an already existing file, git should be smart
enough to figure out that the file has been relocated.

We may potentially split the src/ directory further to make navigating
the source code easier, but hopefully this is good enough already.
2021-02-10 15:31:43 +00:00

147 lines
2.5 KiB
C++

/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KWIN_DRM_POINTER_H
#define KWIN_DRM_POINTER_H
#include <QScopedPointer>
#include <xf86drmMode.h>
#include <xf86drm.h>
namespace KWin
{
template <typename T>
struct DrmDeleter;
template <>
struct DrmDeleter<drmVersion>
{
static void cleanup(drmVersion *version)
{
drmFreeVersion(version);
}
};
template <>
struct DrmDeleter<drmModeAtomicReq>
{
static void cleanup(drmModeAtomicReq *req)
{
drmModeAtomicFree(req);
}
};
template <>
struct DrmDeleter<drmModeConnector>
{
static void cleanup(drmModeConnector *connector)
{
drmModeFreeConnector(connector);
}
};
template <>
struct DrmDeleter<drmModeCrtc>
{
static void cleanup(drmModeCrtc *crtc)
{
drmModeFreeCrtc(crtc);
}
};
template <>
struct DrmDeleter<drmModeFB>
{
static void cleanup(drmModeFB *fb)
{
drmModeFreeFB(fb);
}
};
template <>
struct DrmDeleter<drmModeEncoder>
{
static void cleanup(drmModeEncoder *encoder)
{
drmModeFreeEncoder(encoder);
}
};
template <>
struct DrmDeleter<drmModeModeInfo>
{
static void cleanup(drmModeModeInfo *info)
{
drmModeFreeModeInfo(info);
}
};
template <>
struct DrmDeleter<drmModeObjectProperties>
{
static void cleanup(drmModeObjectProperties *properties)
{
drmModeFreeObjectProperties(properties);
}
};
template <>
struct DrmDeleter<drmModePlane>
{
static void cleanup(drmModePlane *plane)
{
drmModeFreePlane(plane);
}
};
template <>
struct DrmDeleter<drmModePlaneRes>
{
static void cleanup(drmModePlaneRes *resources)
{
drmModeFreePlaneResources(resources);
}
};
template <>
struct DrmDeleter<drmModePropertyRes>
{
static void cleanup(drmModePropertyRes *property)
{
drmModeFreeProperty(property);
}
};
template <>
struct DrmDeleter<drmModePropertyBlobRes>
{
static void cleanup(drmModePropertyBlobRes *blob)
{
drmModeFreePropertyBlob(blob);
}
};
template <>
struct DrmDeleter<drmModeRes>
{
static void cleanup(drmModeRes *resources)
{
drmModeFreeResources(resources);
}
};
template <typename T>
using DrmScopedPointer = QScopedPointer<T, DrmDeleter<T>>;
}
#endif