Add kwin full source tree, greeter login, zsh, pcid service, and build system improvements
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
KWin - the KDE window manager
|
||||
This file is part of the KDE project.
|
||||
|
||||
SPDX-FileCopyrightText: 2022 Xaver Hugl <xaver.hugl@gmail.com>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
#include "drm_layer.h"
|
||||
#include "core/graphicsbuffer.h"
|
||||
#include "drm_buffer.h"
|
||||
#include "drm_output.h"
|
||||
#include "drm_pipeline.h"
|
||||
|
||||
#include <QMatrix4x4>
|
||||
#include <drm_fourcc.h>
|
||||
|
||||
namespace KWin
|
||||
{
|
||||
|
||||
DrmOutputLayer::DrmOutputLayer(Output *output)
|
||||
: OutputLayer(output)
|
||||
{
|
||||
}
|
||||
|
||||
DrmOutputLayer::~DrmOutputLayer() = default;
|
||||
|
||||
std::shared_ptr<GLTexture> DrmOutputLayer::texture() const
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
DrmPipelineLayer::DrmPipelineLayer(DrmPipeline *pipeline, DrmPlane::TypeIndex type)
|
||||
: DrmOutputLayer(pipeline->output())
|
||||
, m_pipeline(pipeline)
|
||||
, m_type(type)
|
||||
{
|
||||
}
|
||||
|
||||
const ColorPipeline &DrmPipelineLayer::colorPipeline() const
|
||||
{
|
||||
return m_colorPipeline;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user