2024-01-27 00:12:49 -06:00
|
|
|
// Copyright 2024 Dolphin Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
#include "VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.h"
|
|
|
|
|
|
2025-12-27 09:07:42 +01:00
|
|
|
#include <memory>
|
|
|
|
|
#include <span>
|
2024-01-27 00:12:49 -06:00
|
|
|
|
2025-12-27 09:07:42 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
#include "VideoCommon/Assets/CustomAssetLibrary.h"
|
2024-01-27 00:12:49 -06:00
|
|
|
|
2025-05-01 22:14:00 -05:00
|
|
|
void CustomPipeline::UpdatePixelData(std::shared_ptr<VideoCommon::CustomAssetLibrary>,
|
|
|
|
|
std::span<const u32>,
|
|
|
|
|
const VideoCommon::CustomAssetLibrary::AssetID&)
|
2024-01-27 00:12:49 -06:00
|
|
|
{
|
|
|
|
|
}
|