mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-01-15 09:05:19 +00:00
17 lines
511 B
C++
17 lines
511 B
C++
// Copyright 2024 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.h"
|
|
|
|
#include <memory>
|
|
#include <span>
|
|
|
|
#include "Common/CommonTypes.h"
|
|
#include "VideoCommon/Assets/CustomAssetLibrary.h"
|
|
|
|
void CustomPipeline::UpdatePixelData(std::shared_ptr<VideoCommon::CustomAssetLibrary>,
|
|
std::span<const u32>,
|
|
const VideoCommon::CustomAssetLibrary::AssetID&)
|
|
{
|
|
}
|